Mailing List Archive

CVS: python/dist/src/Modules cPickle.c
Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
cPickle.c
Log Message:
Make sure not to call realloc() with a NULL pointer -- call malloc()
in that case. Tamito Kajiyama.
CVS: python/dist/src/Modules cPickle.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
cPickle.c
Log Message:
Jim Fulton: this fixes seg faults with bad pickles like "c".
CVS: python/dist/src/Modules cPickle.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
cPickle.c
Log Message:
Fix buglet in load_put -- the test for bad readline result tested the
wrong variable.