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: Fix error checking for instances with in_dict == NULL
Type: Stage:
Components: None Versions:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: gvanrossum, marangoz
Priority: normal Keywords: patch

Created on 2000-06-27 22:18 by marangoz, last changed 2022-04-10 16:02 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
None marangoz, 2000-06-27 22:18 None
Messages (3)
msg32882 - (view) Author: Vladimir Marangozov (marangoz) * (Python triager) Date: 2000-06-27 22:18
 
msg32883 - (view) Author: Vladimir Marangozov (marangoz) * (Python triager) Date: 2000-06-27 22:25
Avoid calling the dealloc function, previously triggered with DECREF(inst).
This caused a segfault in PyDict_GetItem, called with a NULL dict, whenever inst->in_dict fails under low-memory conditions.
msg32884 - (view) Author: Vladimir Marangozov (marangoz) * (Python triager) Date: 2000-06-27 22:49
Avoid calling the dealloc function, previously triggered with DECREF(inst).
This caused a segfault in PyDict_GetItem, called with a NULL dict, whenever inst->in_dict fails under low-memory conditions.
History
Date User Action Args
2022-04-10 16:02:01adminsetgithub: 32470
2000-06-27 22:18:48marangozcreate