From: Roland McGrath Date: Thu, 15 Aug 2002 21:58:11 +0000 (+0000) Subject: 2002-08-15 Roland McGrath X-Git-Tag: cvs/glibc-2-3~453 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dac68e4c8895630d9f1dbb342dea72493c81d911;p=platform%2Fupstream%2Fglibc.git 2002-08-15 Roland McGrath * locale/loadarchive.c (_nl_load_locale_from_archive) Store strdup of the name as passed, rather than the name in the archive dictionary. --- diff --git a/locale/loadarchive.c b/locale/loadarchive.c index 845b9b0..d71ec88 100644 --- a/locale/loadarchive.c +++ b/locale/loadarchive.c @@ -68,7 +68,7 @@ static struct stat64 archive_stat; /* stat of archive when header mapped. */ struct locale_in_archive { struct locale_in_archive *next; - const char *name; + char *name; struct locale_data *data[__LC_LAST]; }; static struct locale_in_archive *archloaded; @@ -428,7 +428,13 @@ _nl_load_locale_from_archive (int category, const char **namep) if (__builtin_expect (lia == NULL, 0)) return NULL; - lia->name = headmap.ptr + namehashtab[idx].name_offset; + lia->name = strdup (*namep); + if (__builtin_expect (lia->name == NULL, 0)) + { + free (lia); + return NULL; + } + lia->next = archloaded; archloaded = lia; @@ -464,6 +470,7 @@ _nl_archive_subfreeres (void) struct locale_in_archive *dead = lia; lia = lia->next; + free (dead->name); for (category = 0; category < __LC_LAST; ++category) if (category != LC_ALL) /* _nl_unload_locale just does this free for the archive case. */