mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 17:53:37 +08:00
Finish locale_data -> __locale_data transition.
The transition that was begun here
f095bb7204
was not complete.
Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
b1c1949e60
commit
6e9331df8b
@ -1,3 +1,8 @@
|
||||
2010-03-26 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* locale/setlocale.c (free_category): Finish renaming
|
||||
struct locale_data to __locale_data.
|
||||
|
||||
2010-03-26 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* csu/gmon-start.c (ENTRY_POINT, etext): Declare as char[], not void.
|
||||
|
@ -465,7 +465,7 @@ libc_hidden_def (setlocale)
|
||||
|
||||
static void __libc_freeres_fn_section
|
||||
free_category (int category,
|
||||
struct __locale_data *here, struct locale_data *c_data)
|
||||
struct __locale_data *here, struct __locale_data *c_data)
|
||||
{
|
||||
struct loaded_l10nfile *runp = _nl_locale_file_list[category];
|
||||
|
||||
@ -481,7 +481,7 @@ free_category (int category,
|
||||
while (runp != NULL)
|
||||
{
|
||||
struct loaded_l10nfile *curr = runp;
|
||||
struct __locale_data *data = (struct locale_data *) runp->data;
|
||||
struct __locale_data *data = (struct __locale_data *) runp->data;
|
||||
|
||||
if (data != NULL && data != c_data)
|
||||
_nl_unload_locale (data);
|
||||
|
Loading…
Reference in New Issue
Block a user