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 "subname" in zipimport.c
Type: crash Stage:
Components: Library (Lib) Versions: Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, pankaj.s01, twouters
Priority: normal Keywords: patch

Created on 2015-10-06 05:47 by pankaj.s01, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
Python-2.7.10-zipimport-01.patch pankaj.s01, 2015-10-06 05:47 Python-2.7.10-zipimport-01
Messages (2)
msg252377 - (view) Author: Pankaj Sharma (pankaj.s01) * Date: 2015-10-06 05:47
Hi ,
The issues reported as String NULL dereferecne at line 
Python-2.7.10/Modules/zipimport.c:266 for "subname" which assigned by
get_subname(fullname) at line 264.so there should be check "subname" for NULL and return error,if it is NULL.
the respective patch have been attached ,please review it.
Thanks
msg252378 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2015-10-06 05:57
I don't think get_subname can return NULL.
History
Date User Action Args
2022-04-11 14:58:22adminsetgithub: 69508
2015-10-07 02:11:53benjamin.petersonsetstatus: open -> closed
resolution: not a bug
2015-10-06 05:57:41benjamin.petersonsetmessages: + msg252378
2015-10-06 05:47:16pankaj.s01create