[issue46280] About vulnerabilities in Cpython native code

Raymond Hettinger report at bugs.python.org
Thu Jan 6 16:21:02 EST 2022


Raymond Hettinger <raymond.hettinger at gmail.com> added the comment:

#654 is a false positive.  The value of ptrs[0] is initialized to NULL via a pointer alias a few lines before:

    pp = ptrs;
    ...
    *pp = NULL;
    ...
    if (ptrs[0] == NULL)

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue46280>
_______________________________________


More information about the Python-bugs-list mailing list