Add missing "return NULL" in overflow check in PyObject_Repr().

This commit is contained in:
Guido van Rossum 2007-11-06 23:32:56 +00:00
parent e1ac4f1930
commit 9b847b432c
1 changed files with 1 additions and 0 deletions

View File

@ -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) {