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 BreamoreBoy, ncoghlan, serhiy.storchaka
Date 2014-10-04.06:58:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412405929.54.0.62276601168.issue19482@psf.upfronthosting.co.za>
In-reply-to
Content
They all look as false positive. For example:

        if (_Unpickler_Read(self, &pdata, size) < 0)
            return -1;
        value = _PyLong_FromByteArray((unsigned char *)pdata, (size_t)size,
                                      1 /* little endian */ , 1 /* signed */ );

gcc is enough smart to determine that pdata can be not initialized in _Unpickler_Read(), but not enough smart to determine that in this case _Unpickler_Read() always returns -1.
History
Date User Action Args
2014-10-04 06:58:49serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, BreamoreBoy
2014-10-04 06:58:49serhiy.storchakasetmessageid: <1412405929.54.0.62276601168.issue19482@psf.upfronthosting.co.za>
2014-10-04 06:58:49serhiy.storchakalinkissue19482 messages
2014-10-04 06:58:49serhiy.storchakacreate