Commit 2fdf4e7b authored by Stefan Krah's avatar Stefan Krah

Move PyErr_NoMemory() closer to the failure.

parent a0fd1f5a
......@@ -3108,6 +3108,7 @@ dec_strdup(const char *src, Py_ssize_t size)
{
char *dest = PyMem_Malloc(size+1);
if (dest == NULL) {
PyErr_NoMemory();
return NULL;
}
......@@ -3186,7 +3187,6 @@ dec_format(PyObject *dec, PyObject *args)
replace_fillchar = 1;
fmt = dec_strdup(fmt, size);
if (fmt == NULL) {
PyErr_NoMemory();
return NULL;
}
fmt[0] = '_';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment