From: Ulrich Drepper Date: Fri, 9 Sep 2005 16:56:52 +0000 (+0000) Subject: (_nl_load_locale_from_archive): Free normalized_codeset even if p was already normalized. X-Git-Tag: cvs/fedora-glibc-20050912T0656~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=641fc4a08321f52dd9860140c57cd94a19ef66a7;p=thirdparty%2Fglibc.git (_nl_load_locale_from_archive): Free normalized_codeset even if p was already normalized. --- diff --git a/locale/loadarchive.c b/locale/loadarchive.c index 80bab9e7c98..d545f17fb53 100644 --- a/locale/loadarchive.c +++ b/locale/loadarchive.c @@ -1,5 +1,5 @@ /* 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. 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), normalized_codeset, normlen), rest, restlen); - free ((char *) normalized_codeset); name = newname; } + free ((char *) normalized_codeset); } }