diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-07-17 23:45:23 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-07-17 23:45:23 (GMT) |
commit | de7990b8af50e7f2ebf6776b948fdb48408ccb02 (patch) | |
tree | 36c3ac459cc1140d9e65d8420815fd6468d50ad8 /Misc/NEWS | |
parent | f5f32b47128763a1f782782bd5a1a125b6d8b28b (diff) | |
download | cpython-de7990b8af50e7f2ebf6776b948fdb48408ccb02.zip cpython-de7990b8af50e7f2ebf6776b948fdb48408ccb02.tar.gz cpython-de7990b8af50e7f2ebf6776b948fdb48408ccb02.tar.bz2 |
SF bug #1238681: freed pointer is used in longobject.c:long_pow().
In addition, long_pow() skipped a necessary (albeit extremely unlikely
to trigger) error check when converting an int modulus to long.
Alas, I was unable to write a test case that crashed due to either
cause.
Bugfix candidate.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ What's New in Python 2.5 alpha 1? Core and builtins ----------------- +- SF bug #1238681: freed pointer is used in longobject.c:long_pow(). + - SF bug #1229429: PyObject_CallMethod failed to decrement some reference counts in some error exit cases. |