Merge with 3.3 : Don't DECREF the ctypes error_object without the GIL held.

This commit is contained in:
Kristjan Valur Jonsson 2012-12-21 11:23:23 +00:00
commit 1724bb196a
1 changed files with 1 additions and 1 deletions

View File

@ -817,11 +817,11 @@ static int _call_function_pointer(int flags,
space[0] = errno;
errno = temp;
}
Py_XDECREF(error_object);
#ifdef WITH_THREAD
if ((flags & FUNCFLAG_PYTHONAPI) == 0)
Py_BLOCK_THREADS
#endif
Py_XDECREF(error_object);
#ifdef MS_WIN32
#ifndef DONT_USE_SEH
if (dwExceptionCode) {