Add missing "return NULL" in overflow check in PyObject_Repr().
This commit is contained in:
parent
e1ac4f1930
commit
9b847b432c
|
@ -869,6 +869,7 @@ PyString_Repr(PyObject *obj, int smartquotes)
|
|||
if (newsize > PY_SSIZE_T_MAX || newsize / 4 != Py_Size(op)) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"string is too large to make repr");
|
||||
return NULL;
|
||||
}
|
||||
v = PyString_FromStringAndSize((char *)NULL, newsize);
|
||||
if (v == NULL) {
|
||||
|
|
Loading…
Reference in New Issue