diff options
author | Barry Warsaw <barry@python.org> | 2011-09-20 18:45:44 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2011-09-20 18:45:44 (GMT) |
commit | 916048d7807b179cbf839346768516bfdaeadecf (patch) | |
tree | 6d9882d5856399fac76cbbffc5cf4766c54625a8 /Python/pythonrun.c | |
parent | c0420fd42ade6d996bfe2ae2beffa3de79524883 (diff) | |
download | cpython-916048d7807b179cbf839346768516bfdaeadecf.zip cpython-916048d7807b179cbf839346768516bfdaeadecf.tar.gz cpython-916048d7807b179cbf839346768516bfdaeadecf.tar.bz2 |
- Issue #13021: Missing decref on an error path. Thanks to Suman Saha for
finding the bug and providing a patch.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 084db12..bea7fe1 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1241,8 +1241,10 @@ PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, Py_DECREF(f); return -1; } - if (PyDict_SetItemString(d, "__cached__", Py_None) < 0) + if (PyDict_SetItemString(d, "__cached__", Py_None) < 0) { + Py_DECREF(f); return -1; + } set_file_name = 1; Py_DECREF(f); } |