diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-11-30 07:01:14 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-11-30 07:01:14 +0000 |
commit | aa8a3b59b1603ce0855e5130cb060318c8e8c78d (patch) | |
tree | a4b3fb8b31b3e880c248d2120b929282fc61b5e0 /posix | |
parent | c1f8ef75d3ddf687efc5ee23e16075c256fa77be (diff) | |
download | glibc-aa8a3b59b1603ce0855e5130cb060318c8e8c78d.tar glibc-aa8a3b59b1603ce0855e5130cb060318c8e8c78d.tar.gz glibc-aa8a3b59b1603ce0855e5130cb060318c8e8c78d.tar.bz2 glibc-aa8a3b59b1603ce0855e5130cb060318c8e8c78d.zip |
2.3.3-86cvs/fedora-glibc-2_3_3-86
Diffstat (limited to 'posix')
-rw-r--r-- | posix/fnmatch_loop.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index fb56bd426b..449e5e02b4 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -600,6 +600,9 @@ FCT (pattern, string, string_end, no_leading_period, flags) if (!is_range && c == fn) goto matched; + /* This is needed if we goto normal_bracket; from + outside of is_seqval's scope. */ + is_seqval = 0; cold = c; c = *p++; } |