From: Serhiy Storchaka Date: Mon, 11 Apr 2016 06:53:37 +0000 (+0300) Subject: Issue #26200: Restored more safe usages of Py_SETREF. X-Git-Tag: v3.6.0a1~236^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=864b63c33f8f715121efeb9fce031f9c2534c27a;p=python Issue #26200: Restored more safe usages of Py_SETREF. --- diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index 620570808c..1aa457162d 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -294,9 +294,9 @@ partial_setstate(partialobject *pto, PyObject *state) else Py_INCREF(dict); - Py_XSETREF(pto->fn, fn); - Py_XSETREF(pto->args, fnargs); - Py_XSETREF(pto->kw, kw); + Py_SETREF(pto->fn, fn); + Py_SETREF(pto->args, fnargs); + Py_SETREF(pto->kw, kw); Py_XSETREF(pto->dict, dict); Py_RETURN_NONE; }