bpo-36436: Fix _testcapi.pymem_buffer_overflow() (GH-12560)
Handle memory allocation failure.
This commit is contained in:
parent
871309c775
commit
414b1cde93
|
@ -0,0 +1 @@
|
||||||
|
Fix ``_testcapi.pymem_buffer_overflow()``: handle memory allocation failure.
|
|
@ -4184,6 +4184,10 @@ pymem_buffer_overflow(PyObject *self, PyObject *args)
|
||||||
/* Deliberate buffer overflow to check that PyMem_Free() detects
|
/* Deliberate buffer overflow to check that PyMem_Free() detects
|
||||||
the overflow when debug hooks are installed. */
|
the overflow when debug hooks are installed. */
|
||||||
buffer = PyMem_Malloc(16);
|
buffer = PyMem_Malloc(16);
|
||||||
|
if (buffer == NULL) {
|
||||||
|
PyErr_NoMemory();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
buffer[16] = 'x';
|
buffer[16] = 'x';
|
||||||
PyMem_Free(buffer);
|
PyMem_Free(buffer);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue