From: Victor Stinner Date: Fri, 14 Jan 2022 04:11:38 +0000 (+0100) Subject: bpo-46280: Fix tracemalloc_copy_domain() (GH-30591) X-Git-Tag: v3.11.0a5~248^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c770d3350813a82a639fcb3babae0de2b87aaae;p=thirdparty%2FPython%2Fcpython.git bpo-46280: Fix tracemalloc_copy_domain() (GH-30591) Test if tracemalloc_copy_traces() failed to allocated memory in tracemalloc_copy_domain(). --- diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index b838439a9cb8..14bad00e4c62 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -1242,6 +1242,9 @@ tracemalloc_copy_domain(_Py_hashtable_t *domains, _Py_hashtable_t *traces = (_Py_hashtable_t *)value; _Py_hashtable_t *traces2 = tracemalloc_copy_traces(traces); + if (traces2 == NULL) { + return -1; + } if (_Py_hashtable_set(domains2, TO_PTR(domain), traces2) < 0) { _Py_hashtable_destroy(traces2); return -1;