[Python-checkins] python/dist/src/Misc NEWS, 1.1193.2.62, 1.1193.2.63

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Mon Jul 18 09:24:39 CEST 2005


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28967/Misc

Modified Files:
      Tag: release24-maint
	NEWS 
Log Message:
backporting fix by tim_one:
"""
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.
"""



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1193.2.62
retrieving revision 1.1193.2.63
diff -u -d -r1.1193.2.62 -r1.1193.2.63
--- NEWS	17 Jul 2005 20:26:33 -0000	1.1193.2.62
+++ NEWS	18 Jul 2005 07:24:35 -0000	1.1193.2.63
@@ -12,6 +12,8 @@
 Core and builtins
 -----------------
 
+- SF bug #1238681:  freed pointer is used in longobject.c:long_pow().
+
 - SF bug #1185883:  Python's small-object memory allocator took over
   a block managed by the platform C library whenever a realloc specified
   a small new size.  However, there's no portable way to know then how



More information about the Python-checkins mailing list