commit | 864b63c33f8f715121efeb9fce031f9c2534c27a | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon Apr 11 09:53:37 2016 +0300 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Mon Apr 11 09:53:37 2016 +0300 |
tree | 14f41dba6e7b3cb3be030328ee6f8f6eba25e658 | |
parent | 199e3f8b96c7576e400def369624ca78c97afec8 [diff] |
Issue #26200: Restored more safe usages of Py_SETREF.
diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index 6205708..1aa4571 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c
@@ -294,9 +294,9 @@ 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; }