[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6e3e91662216 by Victor Stinner in branch 'default': Issue #20908: PyMem_Malloc() must be used with PyMem_Free(), not with free() http://hg.python.org/cpython/rev/6e3e91662216 -- ___ Python tracker

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset b44a3f6676b8 by Jesus Cea in branch '2.7': Closes #20908: Memory leak in Reg2Py() http://hg.python.org/cpython/rev/b44a3f6676b8 New changeset 07968254be96 by Jesus Cea in branch '3.3': Closes #20908: Memory leak in Reg2Py() http://hg.python.org/cpyt

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: This is not actually important, since the program will finish a second after this. But cleanup is simple enough. -- versions: +Python 2.7 ___ Python tracker _

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: I take care of this. -- assignee: -> jcea nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Luis G.F
Luis G.F added the comment: Attach of patch for the 3.3.5 version. -- keywords: +patch versions: +Python 3.3 Added file: http://bugs.python.org/file34394/winreg_leak_v33.patch ___ Python tracker ___

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Luis G.F
New submission from Luis G.F: A memory leak can happend in Reg2Py() loosing the reference to str pointer. See file PC/winreg.c +947 -- components: Extension Modules, Windows messages: 213384 nosy: luisgf priority: normal severity: normal status: open title: Memory leak in Reg2Py() type