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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2018-03-24.12:32:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1521894745.19.0.467229070634.issue33132@psf.upfronthosting.co.za>
In-reply-to
Content
There are several possible reference leaks in compiler.c. When implicit (in VISIT* or ADDOP_* macros) "return" is occurred between creating a new object and ADDOP_N, there is a possible reference leaks. ADDOP_O followed by Py_DECREF contains a possible reference leaks.

And in compiler_from_import() names can be decrefed twice.

The following PR fixes these issues.
History
Date User Action Args
2018-03-24 12:32:25serhiy.storchakasetrecipients: + serhiy.storchaka
2018-03-24 12:32:25serhiy.storchakasetmessageid: <1521894745.19.0.467229070634.issue33132@psf.upfronthosting.co.za>
2018-03-24 12:32:25serhiy.storchakalinkissue33132 messages
2018-03-24 12:32:24serhiy.storchakacreate