diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2022-01-18 16:31:39 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2022-01-24 17:13:33 +0100 |
commit | 8442f0d966da5a9333e961af9e98b41aabdd9f1b (patch) | |
tree | a2d119ef37abe3e91b5e53822e52e289419d4711 /posix/Makefile | |
parent | 84d2d0fe20bdf94feed82b21b4d7d136db471f03 (diff) | |
download | glibc-8442f0d966da5a9333e961af9e98b41aabdd9f1b.tar.gz glibc-8442f0d966da5a9333e961af9e98b41aabdd9f1b.tar.xz glibc-8442f0d966da5a9333e961af9e98b41aabdd9f1b.zip |
Fix handling of unterminated bracket expressions in fnmatch (bug 28792)
When fnmatch processes a bracket expression, and eventually finds it to be unterminated, it should rescan it, treating the starting bracket as a normal character. That didn't happen when a matching character was found while scanning the bracket expression.
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 24d8bfd303..831759c59f 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -101,7 +101,7 @@ tests := test-errno tstgetopt testfnm runtests runptests \ bug-getopt5 tst-getopt_long1 bug-regex34 bug-regex35 \ tst-pathconf tst-rxspencer-no-utf8 \ tst-fnmatch3 bug-regex36 \ - tst-fnmatch4 tst-fnmatch5 tst-fnmatch6 \ + tst-fnmatch4 tst-fnmatch5 tst-fnmatch6 tst-fnmatch7 \ tst-posix_spawn-fd tst-posix_spawn-setsid \ tst-posix_fadvise tst-posix_fadvise64 \ tst-sysconf-empty-chroot tst-glob_symlinks tst-fexecve \ |