1998-12-12  Geoff Keating  <geoffk@ozemail.com.au> 
 
	* posix/fnmatch.c (fnmatch): Arguments to FOLD must not have 
	side-effects.
This commit is contained in:
Ulrich Drepper 1998-12-12 22:10:30 +00:00
parent c090aa1511
commit 9fc19e48b5
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,8 @@
1998-12-12 Geoff Keating <geoffk@ozemail.com.au>
* posix/fnmatch.c (fnmatch): Arguments to FOLD must not have
side-effects.
1998-12-12 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/iso-8859-11.h: ISO 8859-11 conversion data.

View File

@ -1,5 +1,6 @@
1998-12-12 Ulrich Drepper <drepper@cygnus.com>
* charmaps/ISO-8859-13: New file.
* charmaps/ISO-8859-14: New file.
* charmaps/ISO-8859-15: New file.

View File

@ -800,8 +800,8 @@ void
sort_strings (char **array, int nstrings)
@{
/* @r{Sort @code{temp_array} by comparing the strings.} */
qsort (array, sizeof (char *),
nstrings, compare_elements);
qsort (array, nstrings,
sizeof (char *), compare_elements);
@}
@end smallexample

View File

@ -245,7 +245,8 @@ fnmatch (pattern, string, flags)
{
if (*p == '\0')
return FNM_NOMATCH;
c = FOLD (*p++);
c = FOLD (*p);
++p;
if (c == fn)
goto matched;