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 christian.heimes
Recipients christian.heimes
Date 2013-07-20.12:40:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374324037.75.0.169548913827.issue18514@psf.upfronthosting.co.za>
In-reply-to
Content
http://hg.python.org/cpython/file/a65856044ad4/Modules/_ctypes/_ctypes.c#l2673

Coverity analysis:

2672    } else { /* copy contents of adr */
2673        if (-1 == PyCData_MallocBuffer(cmem, dict)) {
2674            return NULL;
    
CID 715381: Structurally dead code (UNREACHABLE)unreachable: This code cannot be reached: "do {
PyObject *_py_decref...".
2675            Py_DECREF(cmem);
2676        }
History
Date User Action Args
2013-07-20 12:40:37christian.heimessetrecipients: + christian.heimes
2013-07-20 12:40:37christian.heimessetmessageid: <1374324037.75.0.169548913827.issue18514@psf.upfronthosting.co.za>
2013-07-20 12:40:37christian.heimeslinkissue18514 messages
2013-07-20 12:40:37christian.heimescreate