diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-05-28 17:14:30 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-05-28 17:14:30 -0400 |
commit | 8887a920a4b81a500f54893250085e0d1a52cf9a (patch) | |
tree | 94355b4c7eefa011600c53ea0dcaaa8b152eacb6 /posix/Makefile | |
parent | 4f031072a5055abd83717820b59efdaa463d5853 (diff) | |
download | glibc-8887a920a4b81a500f54893250085e0d1a52cf9a.tar.gz glibc-8887a920a4b81a500f54893250085e0d1a52cf9a.tar.xz glibc-8887a920a4b81a500f54893250085e0d1a52cf9a.zip |
Fix unnecessary overallocation due to incomplete character
When incomplete characters are found at the end of a string the code ran amok and allocated lots of memory. Stricter limits are now in place.
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile index e89f21e5b3..499d53d31a 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -82,7 +82,7 @@ tests := tstgetopt testfnm runtests runptests \ bug-regex17 bug-regex18 bug-regex19 bug-regex20 \ bug-regex21 bug-regex22 bug-regex23 bug-regex24 \ bug-regex25 bug-regex26 bug-regex27 bug-regex28 \ - bug-regex29 bug-regex30 bug-regex31 \ + bug-regex29 bug-regex30 bug-regex31 bug-regex32 \ tst-nice tst-nanosleep tst-regex2 \ transbug tst-rxspencer tst-pcre tst-boost \ bug-ga1 tst-vfork1 tst-vfork2 tst-vfork3 tst-waitid \ |