diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | locale/programs/charmap.c | 2 |
2 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,8 @@ 2000-02-13 Ulrich Drepper <drepper@redhat.com> + * locale/programs/charmap.c (charmap_read): Remove erronous free + call. + * sysdeps/i386/fpu/s_cosf.S: Domain of opcode is not large enough so test for overflow and handle it. * sysdeps/i386/fpu/s_sinf.S: Likewise. @@ -15,7 +18,7 @@ * iconv/gconv_simple.c: Remove conversion functions to and from UTF-16. PR libc/1580 and libc/1581. - * iconv/skeleton.c: Increment __invocation_coounter after every call + * iconv/skeleton.c: Increment __invocation_counter after every call to the loops. 2000-02-12 Andreas Jaeger <aj@suse.de> diff --git a/locale/programs/charmap.c b/locale/programs/charmap.c index 2f9e1b3a06..b4bce4fe34 100644 --- a/locale/programs/charmap.c +++ b/locale/programs/charmap.c @@ -177,8 +177,6 @@ charmap_read (const char *filename) result = (cmfile == NULL ? NULL : parse_charmap (cmfile)); - free (buf); - if (result) return result; |