mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-26 06:30:06 +01:00
Use calloc instead of xcalloc.
This commit is contained in:
parent
8be57614e5
commit
dc9c9a33be
1 changed files with 1 additions and 1 deletions
|
|
@ -1353,7 +1353,7 @@ static void dmxBERestoreRenderGlyph(pointer value, XID id, pointer n)
|
|||
return;
|
||||
|
||||
/* Now allocate the memory we need */
|
||||
images = xcalloc(len_images, sizeof(char));
|
||||
images = calloc(len_images, sizeof(char));
|
||||
gids = xalloc(glyphSet->hash.tableEntries*sizeof(Glyph));
|
||||
glyphs = xalloc(glyphSet->hash.tableEntries*sizeof(XGlyphInfo));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue