From: Mark Dickinson Date: Fri, 24 Apr 2009 13:14:07 +0000 (+0000) Subject: Fix missing 'return NULL' X-Git-Tag: v2.7a1~1426 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90d47cb46c5845d15bc4fdc0590e19e58e894e0c;p=thirdparty%2FPython%2Fcpython.git Fix missing 'return NULL' --- diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 894f7966a4b9..7ebafa78239e 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -1027,7 +1027,7 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v) overflow: PyErr_SetString(PyExc_OverflowError, "complex() arg overflow"); - + return NULL; } static PyObject *