Fix mixup about PyErr_NoMemory() prototype.
This commit is contained in:
parent
741689d5f3
commit
ea46e4d93c
|
@ -699,8 +699,10 @@ Py_Malloc(nbytes)
|
|||
p = malloc(nbytes);
|
||||
if (p != NULL)
|
||||
return p;
|
||||
else
|
||||
return PyErr_NoMemory();
|
||||
else {
|
||||
PyErr_NoMemory();
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
ANY *
|
||||
|
@ -715,8 +717,10 @@ Py_Realloc(p, nbytes)
|
|||
p = realloc(p, nbytes);
|
||||
if (p != NULL)
|
||||
return p;
|
||||
else
|
||||
return PyErr_NoMemory();
|
||||
else {
|
||||
PyErr_NoMemory();
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue