From: Roland McGrath Date: Sat, 5 Apr 2003 00:34:07 +0000 (+0000) Subject: * stdio-common/reg-printf.c (__register_printf_function): Calloc X-Git-Tag: cvs/glibc-2_3_3~955 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0f534e9a19823a3fa473aaeb61d37394b6bb753;p=thirdparty%2Fglibc.git * stdio-common/reg-printf.c (__register_printf_function): Calloc instead of malloc __printf_arginfo_table and __printf_function_table. Reported by John Reiser . --- diff --git a/ChangeLog b/ChangeLog index c663eb4d10c..8615addc313 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-04-05 Jakub Jelinek + + * stdio-common/reg-printf.c (__register_printf_function): Calloc + instead of malloc __printf_arginfo_table and __printf_function_table. + Reported by John Reiser . + 2003-04-04 Steven Munroe * sysdeps/powerpc/powerpc64/strchr.S: 64-bit optimizations. diff --git a/stdio-common/reg-printf.c b/stdio-common/reg-printf.c index 672652ab208..826035ca6d9 100644 --- a/stdio-common/reg-printf.c +++ b/stdio-common/reg-printf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996, 1997, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1991,1996,1997,2002,2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -46,7 +46,7 @@ __register_printf_function (spec, converter, arginfo) if (__printf_function_table == NULL) { __printf_arginfo_table = (printf_arginfo_function **) - malloc ((UCHAR_MAX + 1) * sizeof (void *) * 2); + calloc (UCHAR_MAX + 1, sizeof (void *) * 2); if (__printf_arginfo_table == NULL) return -1; __printf_function_table = (printf_function **)