Use calloc(), instead of malloc()ing and memset()ing.
2009-01-29 Behdad Esfahbod <behdad@gnome.org> * pango/opentype/harfbuzz-impl.c (_hb_alloc): Use calloc(), instead of malloc()ing and memset()ing.
This commit is contained in:
parent
94c21d26ba
commit
9372edd6f0
|
@ -38,11 +38,9 @@ _hb_alloc( HB_UInt size,
|
||||||
|
|
||||||
if ( size > 0 )
|
if ( size > 0 )
|
||||||
{
|
{
|
||||||
block = malloc( size );
|
block = calloc( 1, size );
|
||||||
if ( !block )
|
if ( !block )
|
||||||
error = ERR(HB_Err_Out_Of_Memory);
|
error = ERR(HB_Err_Out_Of_Memory);
|
||||||
else
|
|
||||||
memset( (char*)block, 0, (size_t)size );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
*perror = error;
|
*perror = error;
|
||||||
|
|
Loading…
Reference in New Issue