This is the mail archive of the libc-alpha@sourceware.cygnus.com 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]

Re: [Various] libc/1468: [50 character or so descriptive subject here (for reference)]


From: GOTO Masanori <gotom@debian.or.jp>
Subject: Re: [Various] libc/1468: [50 character or so descriptive subject here (for reference)]
> > We received the appended bug report.  I can reproduce the german
> > example - but I'm not sure whether this is a subtile glibc bug or a
> > usage error.
> 
> It's only usage error. Not glibc.

I posted as above, but I mistook and confused. Sorry.
It seems that this is gettext bug. glibc, too.
I made a patch to solve this problem against gettext, and glibc.

It seems that this "un-resolved locale.alias problem" is included
from 0.10.24, and before.

In addtion, my posted topic (about sharutils, not glibc)
should be fixed:
  * sharutils configure is too old.
  * sharutils file po/ja_JP.EUC.po -> po/ja.po.


Patch for GNU gettext 0.10.35:
=============================================
--- gettext-0.10.35.org/intl/finddomain.c       Wed Jan  5 06:33:40 2000
+++ gettext-0.10.35/intl/finddomain.c   Wed Jan  5 06:34:00 2000
@@ -187,6 +187,7 @@
            break;
        }
     }
+  retval->next = NULL;
 
   /* The room for an alias was dynamically allocated.  Free it now.  */
   if (alias_value != NULL)
=============================================

Patch for GNU libc 2.1.2-11 (Debian Package Version):
=============================================
--- glibc-2.1.2.org/intl/finddomain.c.org    Wed Jan  5 06:28:54 2000
+++ glibc-2.1.2/intl/finddomain.c        Wed Jan  5 06:29:17 2000
@@ -186,6 +186,7 @@
            break;
        }
     }
+  retval->next = NULL;
 
   /* The room for an alias was dynamically allocated.  Free it now.  */
   if (alias_value != NULL)
=============================================

Regards,
-- GOTO Masanori

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