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: The return value of PyFile_FromFile is not checked for NULL
Type: Stage:
Components: Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: CWRU_Researcher1, mark.dickinson
Priority: normal Keywords:

Created on 2008-11-29 17:40 by CWRU_Researcher1, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg76611 - (view) Author: Brian Szuter (CWRU_Researcher1) Date: 2008-11-29 17:40
Python-2.5.2/Modules/posixmodule.c(posix_tmpfile)
Line 6841

The return value of PyFile_FromFile is not checked for NULL

See the following where it is checked:
tokenizer.c(fp_setreadl) 429
fileobject.c(PyFile_FromString) 300
posixmodule.c(posix_popen) 5323
msg76613 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2008-11-29 17:49
See explanation for issue 4465.
History
Date User Action Args
2022-04-11 14:56:41adminsetgithub: 48716
2008-11-29 17:49:19mark.dickinsonsetstatus: open -> closed
resolution: not a bug
messages: + msg76613
nosy: + mark.dickinson
2008-11-29 17:40:44CWRU_Researcher1create