From: Julian Seward Date: Sun, 6 Jul 2003 01:14:42 +0000 (+0000) Subject: string_match_wrk(): increase max recursion depth to 500. X-Git-Tag: svn/VALGRIND_2_0_0~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8fa2136dcfa4af31e53a754254a86eb7e41df4a3;p=thirdparty%2Fvalgrind.git string_match_wrk(): increase max recursion depth to 500. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1722 --- diff --git a/coregrind/vg_mylibc.c b/coregrind/vg_mylibc.c index ef06526a02..853d77bb72 100644 --- a/coregrind/vg_mylibc.c +++ b/coregrind/vg_mylibc.c @@ -1026,7 +1026,7 @@ static Int recDepth; static Bool string_match_wrk ( Char* pat, Char* str ) { - vg_assert(recDepth >= 0 && recDepth < 250); + vg_assert(recDepth >= 0 && recDepth < 500); recDepth++; for (;;) { switch (*pat) {