From 4a4880966b04ad29671f9aa4e4457269e2ede4de Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 18 Dec 1996 14:14:33 +0000 Subject: [PATCH] Correct *another* mistake (initmath() always fell through to fatal error). Watch it, Barry! :-) --- Modules/mathmodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 6570f150e53..1cf31bd5546 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -254,6 +254,7 @@ initmath() if (PyDict_SetItemString(d, "e", v) < 0) goto finally; Py_DECREF(v); + return; finally: Py_FatalError("can't initialize math module");