mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-09 03:00:07 -04:00
malloc -> calloc
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user