mirror of
https://github.com/python/cpython.git
synced 2025-07-31 07:04:42 +00:00
Fix another bug found by Coverty.
This commit is contained in:
parent
e2061dc48e
commit
711e7f00ca
1 changed files with 1 additions and 1 deletions
|
@ -1363,7 +1363,7 @@ static int
|
|||
converter(PyObject *obj, void **address)
|
||||
{
|
||||
*address = PyLong_AsVoidPtr(obj);
|
||||
return address != NULL;
|
||||
return *address != NULL;
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue