diff options
Diffstat (limited to 'posix/regex.c')
-rw-r--r-- | posix/regex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/regex.c b/posix/regex.c index 85c297b295..3dd03b26c3 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -1011,9 +1011,9 @@ static const char *re_error_msgid[] = This is a variable only so users of regex can assign to it; we never change it ourselves. */ #if defined (MATCH_MAY_ALLOCATE) -/* 8600 was enough to cause a crash on Ultrix, +/* 4400 was enough to cause a crash on Alpha OSF/1, whose default stack limit is 2mb. */ -int re_max_failures = 8000; +int re_max_failures = 4000; #else int re_max_failures = 2000; #endif |