diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2020-04-20 13:47:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 13:47:12 -0700 |
commit | bba760e9b6c7da3586ed9c8e3d5a0ce2909a97bb (patch) | |
tree | 7cb1ac96bb7c2e319b6e5cb65bc5759c08cf0c54 | |
parent | a25a04fea5446b1712cde0cff556574be139285a (diff) | |
download | cpython-git-bba760e9b6c7da3586ed9c8e3d5a0ce2909a97bb.tar.gz |
Fix uninitialized struct member (GH-19589)
-rw-r--r-- | Modules/_functoolsmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index 78706b6ec3..fd4b4c268c 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -1195,6 +1195,7 @@ lru_cache_new(PyTypeObject *type, PyObject *args, PyObject *kw) obj->maxsize = maxsize; Py_INCREF(cache_info_type); obj->cache_info_type = cache_info_type; + obj->dict = NULL; return (PyObject *)obj; } |