From b3d3d9742fc70e08af69d3fc9cb18035c25cd57d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 13 Nov 2003 18:35:19 +0000 Subject: [PATCH] Update. * posix/runtests.c (run_a_test): If regcomp failed, reset last_pattern. --- ChangeLog | 2 ++ posix/runtests.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9da6608..934de09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2003-11-13 Ulrich Drepper + * posix/runtests.c (run_a_test): If regcomp failed, reset last_pattern. + * posix/regcomp.c (parse_dup_op): Fail with REG_BADBR is first number in {,} expression is larger. diff --git a/posix/runtests.c b/posix/runtests.c index 2a5ef6c..ea1efb6 100644 --- a/posix/runtests.c +++ b/posix/runtests.c @@ -71,6 +71,9 @@ run_a_test (int id, const struct a_test * t) puts (" OK."); return 0; } + if (last_pattern) + regfree (&r); + last_pattern = NULL; regerror (err, &r, errmsg, 100); printf ("test %d\n", id); puts (errmsg); -- 2.7.4