Kaydet (Commit) 4fe2184a authored tarafından Alexandre Vassalotti's avatar Alexandre Vassalotti

Merge 3.3

...@@ -5058,11 +5058,13 @@ do_append(UnpicklerObject *self, Py_ssize_t x) ...@@ -5058,11 +5058,13 @@ do_append(UnpicklerObject *self, Py_ssize_t x)
if (result == NULL) { if (result == NULL) {
Pdata_clear(self->stack, i + 1); Pdata_clear(self->stack, i + 1);
Py_SIZE(self->stack) = x; Py_SIZE(self->stack) = x;
Py_DECREF(append_func);
return -1; return -1;
} }
Py_DECREF(result); Py_DECREF(result);
} }
Py_SIZE(self->stack) = x; Py_SIZE(self->stack) = x;
Py_DECREF(append_func);
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment