mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
* locale/findlocale.c (free_mem): Add cast to avoid warning.
This commit is contained in:
parent
4944d5d63f
commit
6adc15f574
@ -1,5 +1,7 @@
|
||||
2000-08-27 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* locale/findlocale.c (free_mem): Add cast to avoid warning.
|
||||
|
||||
* intl/dcigettext.c (DCIGETTEXT): Remove _nl_find_language in code
|
||||
to determine invalid locale name.
|
||||
* locale/findlocale.c (_nl_find_locale): Likewise.
|
||||
|
@ -524,8 +524,7 @@ DCIGETTEXT (domainname, msgid1, msgid2, plural, n, category)
|
||||
|
||||
/* When this is a SUID binary we must not allow accessing files
|
||||
outside the dedicated directories. */
|
||||
if (ENABLE_SECURE
|
||||
&& memchr (single_locale, '/', single_locale) != NULL)
|
||||
if (ENABLE_SECURE && strchr (single_locale, '/') != NULL)
|
||||
/* Ingore this entry. */
|
||||
continue;
|
||||
}
|
||||
|
@ -67,7 +67,7 @@ _nl_find_locale (const char *locale_path, size_t locale_path_len,
|
||||
|
||||
if (*name == NULL || (*name)[0] == '\0'
|
||||
|| (__builtin_expect (__libc_enable_secure, 0)
|
||||
&& memchr (*name, '/', *name) != NULL))
|
||||
&& strchr (*name, '/') != NULL))
|
||||
*name = (char *) _nl_C_name;
|
||||
|
||||
if (__builtin_expect (strcmp (*name, _nl_C_name), 1) == 0
|
||||
@ -257,7 +257,7 @@ free_mem (void)
|
||||
if (data != NULL && data->usage_count != UNDELETABLE)
|
||||
_nl_unload_locale (data);
|
||||
runp = runp->next;
|
||||
free (here->filename);
|
||||
free ((char *) here->filename);
|
||||
free (here);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user