mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Silence a GCC unused variable warning in debug builds.
This commit is contained in:
parent
a0e0cd3013
commit
e9c89e8308
1 changed files with 1 additions and 2 deletions
|
|
@ -450,8 +450,7 @@ deque_dealloc(dequeobject *deque)
|
|||
if (deque->weakreflist != NULL)
|
||||
PyObject_ClearWeakRefs((PyObject *) deque);
|
||||
if (deque->leftblock != NULL) {
|
||||
int err = deque_clear(deque);
|
||||
assert(err == 0);
|
||||
deque_clear(deque);
|
||||
assert(deque->leftblock != NULL);
|
||||
PyMem_Free(deque->leftblock);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue