1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* locale/lc-time.c (free_mem): New function.  Free alt_digits and
	walt_digits.
This commit is contained in:
Ulrich Drepper
2000-08-20 06:10:09 +00:00
parent f1ba489ec8
commit 9b02e86850
2 changed files with 12 additions and 0 deletions

View File

@ -248,3 +248,12 @@ _nl_get_walt_digit (unsigned int number)
return (wchar_t *) result;
}
static void
free_mem (void)
{
free (alt_digits);
free (walt_digits);
}
text_set_element (__libc_subfreeres, free_mem);