mirror of
https://github.com/python/cpython.git
synced 2025-11-07 21:29:26 +00:00
parent
7ff1822ec7
commit
96efdd422c
1 changed files with 3 additions and 1 deletions
|
|
@ -692,9 +692,11 @@ bytesio_getstate(bytesio *self)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
dict = PyDict_Copy(self->dict);
|
dict = PyDict_Copy(self->dict);
|
||||||
if (dict == NULL)
|
if (dict == NULL) {
|
||||||
|
Py_DECREF(initvalue);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
state = Py_BuildValue("(OnN)", initvalue, self->pos, dict);
|
state = Py_BuildValue("(OnN)", initvalue, self->pos, dict);
|
||||||
Py_DECREF(initvalue);
|
Py_DECREF(initvalue);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue