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 Pasha Stetsenko
Recipients Pasha Stetsenko
Date 2018-06-03.06:37:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528007853.29.0.592728768989.issue33742@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation (https://docs.python.org/3/c-api/tuple.html) for `PyStructSequence_InitType` describes the function as follows:

> void PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc *desc)
> Initializes a struct sequence type `type` from `desc` in place.

And most of the time it does just that.
However, when running under python compiled in debug mode, the body of the function will contain the following code at the very beginning:
```
    if (type->ob_base.ob_base._ob_next) {
        _Py_ForgetReference((PyObject*)type);
    }
``` 
Since `type` here is a preallocated but an uninitialized piece of memory, it may contain garbage data that when interpreted as a "live" PyObject will result in memory corruption or process crash.

Thus, either the description for the `PyStructSequence_InitType` method has to document that the `type` object must be zeroed-out before being passed to the method, or the call to `_Py_ForgetReference` be removed.
History
Date User Action Args
2018-06-03 06:37:33Pasha Stetsenkosetrecipients: + Pasha Stetsenko
2018-06-03 06:37:33Pasha Stetsenkosetmessageid: <1528007853.29.0.592728768989.issue33742@psf.upfronthosting.co.za>
2018-06-03 06:37:33Pasha Stetsenkolinkissue33742 messages
2018-06-03 06:37:32Pasha Stetsenkocreate