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 myronww
Recipients myronww
Date 2015-11-23.22:44:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448318679.04.0.579867693106.issue25716@psf.upfronthosting.co.za>
In-reply-to
Content
The 'call_method' and 'call_maybe' function in typeobject.c are leaking
a reference on 'func' in cases where 'args == NULL'.  In this case both 
of these functions exit like so:

    if (args == NULL)
        return NULL;

When they need to do:

    if (args == NULL)
    {
        Py_DECREF(func);
        return NULL;
    }
History
Date User Action Args
2015-11-23 22:44:39myronwwsetrecipients: + myronww
2015-11-23 22:44:39myronwwsetmessageid: <1448318679.04.0.579867693106.issue25716@psf.upfronthosting.co.za>
2015-11-23 22:44:39myronwwlinkissue25716 messages
2015-11-23 22:44:38myronwwcreate