Removed calloc macro

This commit is contained in:
Eduardo Quezada
2022-09-16 20:34:22 -03:00
parent 63156b4398
commit e412ec30a0
6 changed files with 7 additions and 8 deletions

View File

@@ -3966,7 +3966,7 @@ static void TranslateShowNames(TVShow *show, u32 language)
int i;
TVShow **shows;
shows = calloc(11, sizeof(TVShow *));
shows = AllocZeroed(sizeof(TVShow *) * 11);
for (i = 0; i < LAST_TVSHOW_IDX; i++)
{
switch (show[i].common.kind)