mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
Update.
* posix/bug-regex20.c: Correct invalid UTF-8 sequences.
This commit is contained in:
parent
02b50340af
commit
89635190cf
@ -1,5 +1,7 @@
|
||||
2003-11-19 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* posix/bug-regex20.c: Correct invalid UTF-8 sequences.
|
||||
|
||||
* posix/regex_internal.c (build_wcs_upper_buffer): If mbrtowc
|
||||
fails, just use the byte, do no fancy conversions.
|
||||
|
||||
|
@ -93,7 +93,7 @@ static struct
|
||||
{BRE, "x.\\?z", "ax\xc3\x84\xc3\x96z", -1, 1},
|
||||
{BRE, "x.\\?z", "ax\xe2\x80\x94\xc3\xa4z", -1, 1},
|
||||
{BRE, "x.\\?z", "ax\xf0\x9d\x80\x80yz", -1, 1},
|
||||
{BRE, "x.\\?z", "ax\xf9\x81\x82\x83\x84\xf0\xf9\x80\x81z", -1, 1},
|
||||
{BRE, "x.\\?z", "ax\xf9\x81\x82\x83\x84\xf0\x9d\x80\x81z", -1, 1},
|
||||
{BRE, "x.\\?z", "ax\xfd\xbf\xbf\xbf\xbf\xbf\xc3\x96z", -1, 1},
|
||||
{BRE, "x.\\+z", "\xe2\x80\x94xz", -1, 1},
|
||||
{BRE, "x.\\+z", "\xe2\x80\x94xyz", 3, 1},
|
||||
@ -140,7 +140,7 @@ static struct
|
||||
{ERE, "x.?z", "ax\xc3\x84\xc3\x96z", -1, 1},
|
||||
{ERE, "x.?z", "ax\xe2\x80\x94\xc3\xa4z", -1, 1},
|
||||
{ERE, "x.?z", "ax\xf0\x9d\x80\x80yz", -1, 1},
|
||||
{ERE, "x.?z", "ax\xf9\x81\x82\x83\x84\xf0\xf9\x80\x81z", -1, 1},
|
||||
{ERE, "x.?z", "ax\xf9\x81\x82\x83\x84\xf0\x9d\x80\x81z", -1, 1},
|
||||
{ERE, "x.?z", "ax\xfd\xbf\xbf\xbf\xbf\xbf\xc3\x96z", -1, 1},
|
||||
{ERE, "x.+z", "\xe2\x80\x94xz", -1, 1},
|
||||
{ERE, "x.+z", "\xe2\x80\x94xyz", 3, 1},
|
||||
|
Loading…
Reference in New Issue
Block a user