From: Jack Jansen Date: Mon, 7 Aug 2000 21:02:50 +0000 (+0000) Subject: Added a missing } in the USE_STACKCHECK code. X-Git-Tag: v2.0b1~543 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d15908629647f9c9a027c89db74b411e90380c1;p=thirdparty%2FPython%2Fcpython.git Added a missing } in the USE_STACKCHECK code. --- diff --git a/Modules/_sre.c b/Modules/_sre.c index fb8fc2a64e1f..a0e284dd176e 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -570,6 +570,7 @@ SRE_MATCH(SRE_STATE* state, SRE_CODE* pattern, int level) #if defined(USE_STACKCHECK) if (level % 10 == 0 && PyOS_CheckStack()) { return SRE_ERROR_RECURSION_LIMIT; + } #endif #if defined(USE_RECURSION_LIMIT)