projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b53893
)
(re_max_failures): Reduce to 8000.
author
Richard Stallman
<rms@gnu.org>
Sun, 2 Jun 1996 21:33:01 +0000
(21:33 +0000)
committer
Richard Stallman
<rms@gnu.org>
Sun, 2 Jun 1996 21:33:01 +0000
(21:33 +0000)
regex.c
patch
|
blob
|
history
diff --git
a/regex.c
b/regex.c
index e4d4e13b425673c22f203e05e22c92cb2cd74434..48ff0e4a492fdc74774c349c5009f3e337292b7a 100644
(file)
--- a/
regex.c
+++ b/
regex.c
@@
-1008,7
+1008,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)
-int re_max_failures = 20000;
+/* 8600 was enough to cause a crash on Ultrix,
+ whose default stack limit is 2mb. */
+int re_max_failures = 8000;
#else
int re_max_failures = 2000;
#endif