From: Ludovic Courtès Date: Tue, 27 Oct 2015 12:33:26 +0000 (+0100) Subject: Gracefully handle incompatible locale data X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a73a62562a198072ab417e28d4c0315a78c49cfe;p=thirdparty%2Fglibc.git Gracefully handle incompatible locale data * locale/loadlocale.c (_nl_intern_locale_data): Change assertion on CNT to a conditional jump to 'puntdata'. (cherry picked from commit 0062ace2292effc4135c15ea99b1931fea5e0203) --- diff --git a/ChangeLog b/ChangeLog index 0bde9e21f4e..9740c89cab7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-10-27 Ludovic Courtès + + * locale/loadlocale.c (_nl_intern_locale_data): Change assertion + on CNT to a conditional jump to 'puntdata'. + 2015-08-18 Alan Modra [BZ #18421] diff --git a/locale/loadlocale.c b/locale/loadlocale.c index fdba6e93c4c..dcbb833a16d 100644 --- a/locale/loadlocale.c +++ b/locale/loadlocale.c @@ -121,9 +121,10 @@ _nl_intern_locale_data (int category, const void *data, size_t datasize) switch (category) { #define CATTEST(cat) \ - case LC_##cat: \ - assert (cnt < (sizeof (_nl_value_type_LC_##cat) \ - / sizeof (_nl_value_type_LC_##cat[0]))); \ + case LC_##cat: \ + if (cnt >= (sizeof (_nl_value_type_LC_##cat) \ + / sizeof (_nl_value_type_LC_##cat[0]))) \ + goto puntdata; \ break CATTEST (NUMERIC); CATTEST (TIME);