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 nevyn
Recipients donmez, gvanrossum, jafo, nevyn, nnorwitz
Date 2007-10-22.21:43:04
SpamBayes Score 0.36992812
Marked as misclassified No
Message-id <1193089385.5.0.175139958818.issue1179@psf.upfronthosting.co.za>
In-reply-to
Content
Not sure who Neal is, and this probably isn't a final upstream fix ...
but it's what I've applied to Fedora's python. It's basically the same
patch as before, but it keeps the original * tests instead of just
replacing them with / tests. So given:

 if x * y != len

...the first patch did:

 if len / x != y

...and this patch does:

 if x * y != len ||
    len / x != y
Files
File name Uploaded
python-2.5.CVE-2007-4965-int-overflow.patch nevyn, 2007-10-22.21:43:05
History
Date User Action Args
2007-10-22 21:43:05nevynsetspambayes_score: 0.369928 -> 0.36992812
recipients: + nevyn, gvanrossum, nnorwitz, jafo, donmez
2007-10-22 21:43:05nevynsetspambayes_score: 0.369928 -> 0.369928
messageid: <1193089385.5.0.175139958818.issue1179@psf.upfronthosting.co.za>
2007-10-22 21:43:05nevynlinkissue1179 messages
2007-10-22 21:43:05nevyncreate