mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 22:40:05 +00:00
Update.
* locale/findlocale.c (free_mem): Also free here->filename. * locale/loadlocale.c (_nl_unload_locale): Also free locale->name. * malloc/malloc.c (new_heap): Try harder to get an aligned chunk of
This commit is contained in:
parent
6145e82330
commit
f1ba489ec8
@ -1,5 +1,9 @@
|
||||
2000-08-19 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* locale/findlocale.c (free_mem): Also free here->filename.
|
||||
|
||||
* locale/loadlocale.c (_nl_unload_locale): Also free locale->name.
|
||||
|
||||
* math/test-fenv.c (feenv_tests): Clear all exceptions before
|
||||
first test.
|
||||
(feexcp_nomask_test): Correct printf args.
|
||||
@ -14,7 +18,7 @@
|
||||
|
||||
2000-08-19 Wolfram Gloger <wg@malloc.de>
|
||||
|
||||
* malloc/malloc.c (new_heap): try harder to get an aligned chunk of
|
||||
* malloc/malloc.c (new_heap): Try harder to get an aligned chunk of
|
||||
size HEAP_MAX_SIZE.
|
||||
|
||||
2000-08-19 Andreas Jaeger <aj@suse.de>
|
||||
|
@ -258,6 +258,7 @@ free_mem (void)
|
||||
if (data != NULL && data->usage_count != UNDELETABLE)
|
||||
_nl_unload_locale (data);
|
||||
runp = runp->next;
|
||||
free (here->filename);
|
||||
free (here);
|
||||
}
|
||||
}
|
||||
|
@ -240,5 +240,6 @@ _nl_unload_locale (struct locale_data *locale)
|
||||
free ((void *) locale->filedata);
|
||||
|
||||
free ((char *) locale->options);
|
||||
free ((char *) locale->name);
|
||||
free (locale);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user