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 Jim Fasarakis-Hilliard, amaury.forgeotdarc, christian.heimes, corona10, eric.snow, erlendaasland, isoschiz, koubaa, kylotan, lukasz.langa, miss-islington, pconnell, petr.viktorin, phsilva, python-dev, santoso.wijaya, shihai1991, tlesher, vstinner, ysj.ray
Date 2020-10-22.08:06:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603353969.28.0.54646847323.issue1635741@roundup.psfhosted.org>
In-reply-to
Content
The commit

    bpo-1635741: Port multiprocessing ext to multiphase init (GH-21378)
    https://github.com/python/cpython/commit/1d541c25c8019f7a0b80b3e1b437abe171e40b65


introduced a NULL pointer deref:

        if (py_sem_value_max == NULL) {
            Py_DECREF(py_sem_value_max);
            return -1;
        }
History
Date User Action Args
2020-10-22 08:06:09christian.heimessetrecipients: + christian.heimes, amaury.forgeotdarc, kylotan, vstinner, tlesher, phsilva, petr.viktorin, ysj.ray, santoso.wijaya, lukasz.langa, python-dev, eric.snow, pconnell, isoschiz, Jim Fasarakis-Hilliard, corona10, miss-islington, shihai1991, erlendaasland, koubaa
2020-10-22 08:06:09christian.heimessetmessageid: <1603353969.28.0.54646847323.issue1635741@roundup.psfhosted.org>
2020-10-22 08:06:09christian.heimeslinkissue1635741 messages
2020-10-22 08:06:08christian.heimescreate