mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
(_nl_load_locale_from_archive): Free normalized_codeset even if p was already normalized.
This commit is contained in:
parent
e73b144f02
commit
641fc4a083
@ -1,5 +1,5 @@
|
|||||||
/* Code to load locale data from the locale archive file.
|
/* Code to load locale data from the locale archive file.
|
||||||
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -185,9 +185,9 @@ _nl_load_locale_from_archive (int category, const char **namep)
|
|||||||
memcpy (__mempcpy (__mempcpy (newname, name, p - name),
|
memcpy (__mempcpy (__mempcpy (newname, name, p - name),
|
||||||
normalized_codeset, normlen),
|
normalized_codeset, normlen),
|
||||||
rest, restlen);
|
rest, restlen);
|
||||||
free ((char *) normalized_codeset);
|
|
||||||
name = newname;
|
name = newname;
|
||||||
}
|
}
|
||||||
|
free ((char *) normalized_codeset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user