From: Jesus Cea Date: Wed, 3 Oct 2012 01:03:04 +0000 (+0200) Subject: MERGE: Closes #15897: zipimport.c doesn't check return value of fseek() X-Git-Tag: v3.4.0a1~2398 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42db4157a9c4c23e1dd75ba344be44760f2a6332;p=thirdparty%2FPython%2Fcpython.git MERGE: Closes #15897: zipimport.c doesn't check return value of fseek() --- 42db4157a9c4c23e1dd75ba344be44760f2a6332 diff --cc Misc/NEWS index 4c880b6d197e,aada4df299cc..3b8ec219ef2d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -27,6 -27,6 +27,9 @@@ Core and Builtin - Issue #15846: Fix SystemError which happened when using `ast.parse()` in an exception handler on code with syntax errors. ++- Issue #15897: zipimport.c doesn't check return value of fseek(). ++ Patch by Felipe Cruz. ++ - Issue #15801: Make sure mappings passed to '%' formatting are actually subscriptable.