Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 15 Feb 2000 07:37:37 +0000 (07:37 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 15 Feb 2000 07:37:37 +0000 (07:37 +0000)
* locale/programs/repertoire.c (repertoire_new_char): NUL
terminated names of character in range.

ChangeLog
locale/programs/repertoire.c

index 646fefb..b07a366 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-02-14  Ulrich Drepper  <drepper@redhat.com>
 
+       * locale/programs/repertoire.c (repertoire_new_char): NUL
+       terminated names of character in range.
+
        * stdio-common/vfprintf.c (vfprintf): Initialize thousands_sep.
        Define and initialize use_outdigits in the inner loops.
 
index 8741c7d..e7cf0bb 100644 (file)
@@ -462,6 +462,7 @@ hexadecimal range format should use only capital characters"));
 
       obstack_printf (ob, decimal_ellipsis ? "%.*s%0*d" : "%.*s%0*X",
                      prefix_len, from, len1 - prefix_len, cnt);
+      obstack_1grow (ob, '\0');
 
       insert_entry (ht, buf, len1,
                    (void *) (unsigned long int) this_value);