diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-11-13 18:35:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-11-13 18:35:19 +0000 |
commit | b3d3d9742fc70e08af69d3fc9cb18035c25cd57d (patch) | |
tree | e728dd57a56a0362e6eadb814dec5891658fe551 /posix/runtests.c | |
parent | db70483fd383cb4dad1f84804a106572c7dfca0b (diff) | |
download | glibc-b3d3d9742fc70e08af69d3fc9cb18035c25cd57d.zip glibc-b3d3d9742fc70e08af69d3fc9cb18035c25cd57d.tar.gz glibc-b3d3d9742fc70e08af69d3fc9cb18035c25cd57d.tar.bz2 |
Update.
* posix/runtests.c (run_a_test): If regcomp failed, reset last_pattern.
Diffstat (limited to 'posix/runtests.c')
-rw-r--r-- | posix/runtests.c | 3 |
1 files changed, 3 insertions, 0 deletions
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); |