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.

classification
Title: NULL dereference in zipimport.c
Type: crash Stage: resolved
Components: Extension Modules Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: loewis, python-dev, skrah
Priority: normal Keywords: patch

Created on 2012-08-20 10:41 by skrah, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
zipimport_null_dereference.diff skrah, 2012-08-20 10:41 review
Messages (3)
msg168644 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012-08-20 10:41
There's a use of an unchecked return value in zipimport.c. Patch attached.
msg168648 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2012-08-20 11:53
LGTM.
msg168650 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-08-20 12:18
New changeset c89fe7dc22ee by Stefan Krah in branch 'default':
Closes #15737: Fix potential NULL dereference in zipimport.c.
http://hg.python.org/cpython/rev/c89fe7dc22ee
History
Date User Action Args
2022-04-11 14:57:34adminsetgithub: 59942
2012-08-20 12:18:45python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg168650

resolution: fixed
stage: patch review -> resolved
2012-08-20 11:53:22loewissetnosy: + loewis
messages: + msg168648
2012-08-20 10:41:17skrahcreate