* locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
authorUlrich Drepper <drepper@redhat.com>
Fri, 25 Aug 2006 00:39:53 +0000 (00:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 25 Aug 2006 00:39:53 +0000 (00:39 +0000)
do anything.

ChangeLog
locale/programs/ld-ctype.c

index 483f5ac..b95ea69 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
 
+       * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
+       do anything.
+
        * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
        symbol require exact match (these are PLTs).
        * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
index f38231f..0ffda62 100644 (file)
@@ -2256,6 +2256,8 @@ ctype_read (struct linereader *ldfile, struct localedef_t *result,
   /* Prepare the data structures.  */
   ctype_startup (ldfile, result, charmap, copy_locale, ignore_content);
   ctype = result->categories[LC_CTYPE].ctype;
+  if (ctype == NULL)
+    return;
 
   /* Remember the repertoire we use.  */
   if (!ignore_content)