mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
* stdio-common/reg-printf.c (__register_printf_function): Calloc
instead of malloc __printf_arginfo_table and __printf_function_table. Reported by John Reiser <jreiser@BitWagon.com>.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2003-04-05 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* stdio-common/reg-printf.c (__register_printf_function): Calloc
|
||||||
|
instead of malloc __printf_arginfo_table and __printf_function_table.
|
||||||
|
Reported by John Reiser <jreiser@BitWagon.com>.
|
||||||
|
|
||||||
2003-04-04 Steven Munroe <sjmunroe@us.ibm.com>
|
2003-04-04 Steven Munroe <sjmunroe@us.ibm.com>
|
||||||
|
|
||||||
* sysdeps/powerpc/powerpc64/strchr.S: 64-bit optimizations.
|
* sysdeps/powerpc/powerpc64/strchr.S: 64-bit optimizations.
|
||||||
|
@@ -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.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
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)
|
if (__printf_function_table == NULL)
|
||||||
{
|
{
|
||||||
__printf_arginfo_table = (printf_arginfo_function **)
|
__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)
|
if (__printf_arginfo_table == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
__printf_function_table = (printf_function **)
|
__printf_function_table = (printf_function **)
|
||||||
|
Reference in New Issue
Block a user