This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch gentoo/2.22 updated. glibc-2.22-38-g29c2af3


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, gentoo/2.22 has been updated
       via  29c2af3215ff6670058948d1837c786a6884667f (commit)
      from  21ccef1540a08584f4342c4417d9d94d50f93a91 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=29c2af3215ff6670058948d1837c786a6884667f

commit 29c2af3215ff6670058948d1837c786a6884667f
Author: Ludovic Courtès <ludo@gnu.org>
Date:   Tue Oct 27 13:33:26 2015 +0100

    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)
    (cherry picked from commit 84f80d5ea11fb3b6325c18c31ba0a6a99d5f68bb)

diff --git a/locale/loadlocale.c b/locale/loadlocale.c
index fdba6e9..dcbb833 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);

-----------------------------------------------------------------------

Summary of changes:
 locale/loadlocale.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]