chg: converting malloc calls -> calloc which zeros out the allocated memory

This commit is contained in:
iceman1001 2018-05-03 19:42:16 +02:00
commit 939b727c42
9 changed files with 55 additions and 50 deletions

View file

@ -2002,7 +2002,11 @@ int CmdHF14AMfURestore(const char *Cmd){
return 1;
}
uint8_t *dump = malloc(fsize);
uint8_t *dump = calloc(fsize, sizeof(uint8_t));
if ( !dump ) {
PrintAndLogEx(WARNING, "Failed to allocate memory");
return 1;
}
// read all data
size_t bytes_read = fread(dump, 1, fsize, f);