Kaydet (Commit) a72aa843 authored tarafından Gregory P. Smith's avatar Gregory P. Smith

Fix compiler warning related to issue #14331. harmless.

üst 9b5952d7
......@@ -1267,7 +1267,8 @@ find_module(char *fullname, char *subname, PyObject *path, char *buf,
}
name = PyMem_MALLOC(MAXPATHLEN+1);
if (name == NULL) {
return PyErr_NoMemory();
PyErr_NoMemory();
return NULL;
}
strcpy(name, subname);
......
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