From: Jakub Jelinek Date: Mon, 16 Apr 2007 23:02:04 +0000 (+0000) Subject: * locale/programs/locarchive.c (show_archive_content): Fix sizeof X-Git-Tag: cvs/fedora-glibc-20070416T2350~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07358add7496f187be585c8d44434eb757b68bb7;p=platform%2Fupstream%2Fglibc.git * locale/programs/locarchive.c (show_archive_content): Fix sizeof argument in xmalloc size computation. 2007-04-16 Jakub Jelinek * locale/programs/locarchive.c (show_archive_content): Fix sizeof argument in xmalloc size computation. --- diff --git a/ChangeLog b/ChangeLog index fed20ce..6d57e63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-04-16 Jakub Jelinek + + * locale/programs/locarchive.c (show_archive_content): Fix sizeof + argument in xmalloc size computation. + 2007-04-01 Jakub Jelinek * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use diff --git a/locale/programs/locarchive.c b/locale/programs/locarchive.c index 5c0d5f1..4075695 100644 --- a/locale/programs/locarchive.c +++ b/locale/programs/locarchive.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2005, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. @@ -1428,7 +1428,7 @@ show_archive_content (int verbose) int sumused; files = (struct dataent *) xmalloc (head->sumhash_used - * sizeof (struct sumhashent)); + * sizeof (struct dataent)); sumhashtab = (struct sumhashent *) ((char *) ah.addr + head->sumhash_offset);