]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-33316: PyThread_release_lock always fails (GH-6541)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 2 Feb 2019 16:45:50 +0000 (08:45 -0800)
committerGitHub <noreply@github.com>
Sat, 2 Feb 2019 16:45:50 +0000 (08:45 -0800)
Use correct interpretation of return value from APIs.
(cherry picked from commit 05e922136a3286893bd489a8f2ecfa0dba4da368)

Co-authored-by: native-api <ivan_pozdeev@mail.ru>
Misc/NEWS.d/next/Windows/2018-04-20-03-24-07.bpo-33316.9IiJ8J.rst [new file with mode: 0644]
Python/thread_nt.h

diff --git a/Misc/NEWS.d/next/Windows/2018-04-20-03-24-07.bpo-33316.9IiJ8J.rst b/Misc/NEWS.d/next/Windows/2018-04-20-03-24-07.bpo-33316.9IiJ8J.rst
new file mode 100644 (file)
index 0000000..5517679
--- /dev/null
@@ -0,0 +1 @@
+PyThread_release_lock always fails
index 61fa8619bc1742f8562a55878a45443e971cf07b..56295d0e8c0f4ebae803eeca3155a646c2de66a3 100644 (file)
@@ -104,8 +104,9 @@ LeaveNonRecursiveMutex(PNRMUTEX mutex)
     if (PyMUTEX_LOCK(&mutex->cs))
         return FALSE;
     mutex->locked = 0;
-    result = PyCOND_SIGNAL(&mutex->cv);
-    result &= PyMUTEX_UNLOCK(&mutex->cs);
+    /* condvar APIs return 0 on success. We need to return TRUE on success. */
+    result = !PyCOND_SIGNAL(&mutex->cv);
+    PyMUTEX_UNLOCK(&mutex->cs);
     return result;
 }