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 christian.heimes
Recipients christian.heimes, eli.bendersky, scoder
Date 2015-04-19.19:33:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429471995.2.0.707709004529.issue24012@psf.upfronthosting.co.za>
In-reply-to
Content
Similar to #24011 and #24010 the pyexpat module's init function fails to check some return values for NULL. The patch doesn't include proper reference cleanups as most of the other parts of PyInit_pyexpat() don't cleanup on error, too.

CID 982779 (#2 of 2): Dereference null return value (NULL_RETURNS)
dereference: Dereferencing a pointer that might be null sys_modules when calling PyDict_SetItem

CID 982240 (#2 of 2): Unchecked return value (CHECKED_RETURN)
check_return: Calling PyDict_SetItem without checking return value (as is done elsewhere 158 out of 174 times)
History
Date User Action Args
2015-04-19 19:33:15christian.heimessetrecipients: + christian.heimes, scoder, eli.bendersky
2015-04-19 19:33:15christian.heimessetmessageid: <1429471995.2.0.707709004529.issue24012@psf.upfronthosting.co.za>
2015-04-19 19:33:15christian.heimeslinkissue24012 messages
2015-04-19 19:33:15christian.heimescreate