Issue 13018: dictobject.c: refleak - Python tracker (original) (raw)

Issue13018

Created on 2011-09-20 14:56 by Suman.Saha, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python_patch6 Suman.Saha,2011-09-20 14:56 Patch review
Messages (3)
msg144335 - (view) Author: Suman Saha (Suman.Saha) Date: 2011-09-20 14:56
Something that is allocated using PyObject_CallObjec is not freed on one or more error paths.
msg146314 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-10-24 18:33
New changeset 5d7164febff1 by Petri Lehtinen in branch '2.7': Issue #13018: Fix reference leaks in error paths in dictobject.c. http://hg.python.org/cpython/rev/5d7164febff1 New changeset df24a8b57148 by Petri Lehtinen in branch '3.2': Issue #13018: Fix reference leaks in error paths in dictobject.c. http://hg.python.org/cpython/rev/df24a8b57148
msg146315 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2011-10-24 18:36
Thanks for the patch, fixed.
History
Date User Action Args
2022-04-11 14:57:21 admin set github: 57227
2011-10-24 18:36:18 petri.lehtinen set status: open -> closedmessages: + keywords: - needs reviewresolution: fixedstage: patch review -> resolved
2011-10-24 18:33:33 python-dev set nosy: + python-devmessages: +
2011-10-24 07:03:03 petri.lehtinen set keywords: + patch, needs reviewnosy: + petri.lehtinen
2011-09-21 19:28:56 skrah set stage: patch reviewcomponents: + Interpreter Coreversions: + Python 3.3
2011-09-21 19:27:03 skrah set title: Resource is not released before returning from the functiion -> dictobject.c: refleak
2011-09-20 14:56:03 Suman.Saha create