diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2017-04-20 18:19:31 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-20 18:19:31 (GMT) |
| commit | 40db90c1ce1a59d5f5f2894bb0ce32110000bf27 (patch) | |
| tree | 0436658cf04e8ebd902a9bc1851b21ee7b98bf45 /Modules/_struct.c | |
| parent | 8f5cdfa9fc1bb6b4d9a33fc281987252f6398430 (diff) | |
| download | cpython-40db90c1ce1a59d5f5f2894bb0ce32110000bf27.zip cpython-40db90c1ce1a59d5f5f2894bb0ce32110000bf27.tar.gz cpython-40db90c1ce1a59d5f5f2894bb0ce32110000bf27.tar.bz2 | |
bpo-29802: Fix reference counting in module-level struct functions (#1213)
when pass arguments of wrong type.
Diffstat (limited to 'Modules/_struct.c')
| -rw-r--r-- | Modules/_struct.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c index 4bc4186..a614be8 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -2083,6 +2083,7 @@ cache_struct_converter(PyObject *fmt, PyObject **ptr) if (fmt == NULL) { Py_DECREF(*ptr); + *ptr = NULL; return 1; } |
