From bece1bc4ec83cde611243c891d3a93b5e9bbcedd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 20 Nov 1999 23:27:27 +0000 Subject: Update. * wctype/wctrans.c (wctrans): Use correct base index to access extra mapping tables. * locale/loadlocale.c (_nl_load_locale): Use actual number of entries from file and not the fixed (minimal number from the langinfo.h list. --- locale/loadlocale.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'locale/loadlocale.c') diff --git a/locale/loadlocale.c b/locale/loadlocale.c index d829309f9f..7b94a42d0a 100644 --- a/locale/loadlocale.c +++ b/locale/loadlocale.c @@ -176,8 +176,7 @@ _nl_load_locale (struct loaded_l10nfile *file, int category) } newdata = malloc (sizeof *newdata - + (_nl_category_num_items[category] - * sizeof (union locale_data_value))); + + filedata->nstrings * sizeof (union locale_data_value)); if (! newdata) goto puntmap; @@ -186,7 +185,7 @@ _nl_load_locale (struct loaded_l10nfile *file, int category) newdata->filesize = st.st_size; newdata->mmaped = mmaped; newdata->usage_count = 0; - newdata->nstrings = _nl_category_num_items[category]; + newdata->nstrings = filedata->nstrings; for (cnt = 0; cnt < newdata->nstrings; ++cnt) { off_t idx = filedata->strindex[cnt]; -- cgit v1.2.3