summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2005-07-17 23:45:23 (GMT)
committerTim Peters <tim.peters@gmail.com>2005-07-17 23:45:23 (GMT)
commitde7990b8af50e7f2ebf6776b948fdb48408ccb02 (patch)
tree36c3ac459cc1140d9e65d8420815fd6468d50ad8 /Misc
parentf5f32b47128763a1f782782bd5a1a125b6d8b28b (diff)
downloadcpython-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')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 89583e0..27d2763 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.