mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
- Issue #13021: Missing decref on an error path. Thanks to Suman Saha for
finding the bug and providing a patch.
This commit is contained in:
parent
c0420fd42a
commit
916048d780
2 changed files with 6 additions and 1 deletions
|
@ -10,6 +10,9 @@ What's New in Python 3.2.3?
|
|||
Core and Builtins
|
||||
-----------------
|
||||
|
||||
- Issue #13021: Missing decref on an error path. Thanks to Suman Saha for
|
||||
finding the bug and providing a patch.
|
||||
|
||||
- Issue #12973: Fix overflow check that relied on undefined behaviour in
|
||||
list_repeat. This bug caused test_list to fail with recent versions
|
||||
of Clang.
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue