]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-36436: Fix _testcapi.pymem_buffer_overflow() (GH-12560)
authorVictor Stinner <vstinner@redhat.com>
Tue, 26 Mar 2019 13:35:30 +0000 (14:35 +0100)
committerGitHub <noreply@github.com>
Tue, 26 Mar 2019 13:35:30 +0000 (14:35 +0100)
Handle memory allocation failure.

Misc/NEWS.d/next/Tests/2019-03-26-13-49-21.bpo-36436.yAtN0V.rst [new file with mode: 0644]
Modules/_testcapimodule.c

diff --git a/Misc/NEWS.d/next/Tests/2019-03-26-13-49-21.bpo-36436.yAtN0V.rst b/Misc/NEWS.d/next/Tests/2019-03-26-13-49-21.bpo-36436.yAtN0V.rst
new file mode 100644 (file)
index 0000000..efc9296
--- /dev/null
@@ -0,0 +1 @@
+Fix ``_testcapi.pymem_buffer_overflow()``: handle memory allocation failure.
index c82ba0cfd0d65c1c8cfadac06460493dee7c942f..c515efe660b5bd51d80f5e1140d95db70a577e12 100644 (file)
@@ -4184,6 +4184,10 @@ pymem_buffer_overflow(PyObject *self, PyObject *args)
     /* Deliberate buffer overflow to check that PyMem_Free() detects
        the overflow when debug hooks are installed. */
     buffer = PyMem_Malloc(16);
+    if (buffer == NULL) {
+        PyErr_NoMemory();
+        return NULL;
+    }
     buffer[16] = 'x';
     PyMem_Free(buffer);