From: Christian Heimes Date: Thu, 22 Oct 2020 10:20:36 +0000 (+0200) Subject: bpo-1635741: Fix NULL ptr deref in multiprocessing (GH-22880) X-Git-Tag: v3.10.0a2~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dde91b1953c0f0d51c4dde056727ff84b7655190;p=thirdparty%2FPython%2Fcpython.git bpo-1635741: Fix NULL ptr deref in multiprocessing (GH-22880) Commit 1d541c25c8019f7a0b80b3e1b437abe171e40b65 introduced a NULL pointer dereference in error path. Signed-off-by: Christian Heimes --- diff --git a/Modules/_multiprocessing/multiprocessing.c b/Modules/_multiprocessing/multiprocessing.c index 25b8dc3967a4..bec23517fca5 100644 --- a/Modules/_multiprocessing/multiprocessing.c +++ b/Modules/_multiprocessing/multiprocessing.c @@ -207,7 +207,6 @@ multiprocessing_exec(PyObject *module) py_sem_value_max = PyLong_FromLong(SEM_VALUE_MAX); if (py_sem_value_max == NULL) { - Py_DECREF(py_sem_value_max); return -1; } if (PyDict_SetItemString(_PyMp_SemLockType.tp_dict, "SEM_VALUE_MAX",