mirror of https://github.com/python/cpython
Merge 3.2.
This commit is contained in:
commit
ea94ba45fa
|
@ -692,8 +692,10 @@ bytesio_getstate(bytesio *self)
|
|||
}
|
||||
else {
|
||||
dict = PyDict_Copy(self->dict);
|
||||
if (dict == NULL)
|
||||
if (dict == NULL) {
|
||||
Py_DECREF(initvalue);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
state = Py_BuildValue("(OnN)", initvalue, self->pos, dict);
|
||||
|
|
Loading…
Reference in New Issue