Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7ec8f commit 865d12aCopy full SHA for 865d12a
1 file changed
Modules/_testcapimodule.c
@@ -2723,6 +2723,7 @@ test_setallocators(PyMemAllocatorDomain domain)
2723
case PYMEM_DOMAIN_RAW: ptr2 = PyMem_RawRealloc(ptr, size2); break;
2724
case PYMEM_DOMAIN_MEM: ptr2 = PyMem_Realloc(ptr, size2); break;
2725
case PYMEM_DOMAIN_OBJ: ptr2 = PyObject_Realloc(ptr, size2); break;
2726
+ default: ptr2 = NULL; break;
2727
}
2728
2729
if (ptr2 == NULL) {
0 commit comments