This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author srid
Recipients georg.brandl, srid
Date 2009-07-30.19:29:27
SpamBayes Score 0.0009393697
Marked as misclassified No
Message-id <1248982169.42.0.985424870363.issue6600@psf.upfronthosting.co.za>
In-reply-to
Content
This is after preprocessor run (cc_r -E):-

Original:
newmode = (((__strlen(mode) + 3) < 0 || (__strlen(mode) + 3) > 
((Py_ssize_t)(((size_t)-1)>>1))) ? 0 : malloc((__strlen(mode) + 3) ? 
(__strlen(mode) + 3) : 1));

Patched:
newmode = (((3 + __strlen(mode)) < 0 || (3 + __strlen(mode)) > 
((Py_ssize_t)(((size_t)-1)>>1))) ? 0 : malloc((3 + __strlen(mode)) ? (3 
+ __strlen(mode)) : 1));
History
Date User Action Args
2009-07-30 19:29:29sridsetrecipients: + srid, georg.brandl
2009-07-30 19:29:29sridsetmessageid: <1248982169.42.0.985424870363.issue6600@psf.upfronthosting.co.za>
2009-07-30 19:29:27sridlinkissue6600 messages
2009-07-30 19:29:27sridcreate