stringMatch_wrk: reduce max recursion depth to 250 (paranoia)


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@281 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_mylibc.c b/coregrind/vg_mylibc.c
index a9d9537..8cb776e 100644
--- a/coregrind/vg_mylibc.c
+++ b/coregrind/vg_mylibc.c
@@ -854,7 +854,7 @@
 
 static Bool stringMatch_wrk ( Char* pat, Char* str )
 {
-   vg_assert(recDepth >= 0 && recDepth < 500);
+   vg_assert(recDepth >= 0 && recDepth < 250);
    recDepth++;
    for (;;) {
       switch (*pat) {