malloc -> calloc

This commit is contained in:
Marcos Del Sol Vives 2024-01-07 00:58:13 +01:00
parent 1e9a9f2838
commit b050ebc2b9
No known key found for this signature in database
2 changed files with 3 additions and 7 deletions

View file

@ -674,15 +674,11 @@ static int CmdHF14AWSLoad(const char *Cmd) {
return PM3_EMALLOC;
}
}
gdImageDestroy(pal_img);
int res = start_drawing(model_nr, black_plane, red_plane);
free(black_plane);
if (red_plane) {
free(red_plane);
}
free(red_plane);
return res;
}

View file

@ -53,7 +53,7 @@ gdImagePtr img_palettize(gdImagePtr rgb, int * palette, int palette_size) {
}
// Allocate space for palette in YCbCr
struct ycbcr_t * pal_ycbcr = malloc(palette_size * sizeof(struct ycbcr_t));
struct ycbcr_t * pal_ycbcr = calloc(palette_size, sizeof(struct ycbcr_t));
if (!pal_ycbcr) {
gdImageDestroy(res);
return NULL;