mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
cppcheck mem alloc: oops forgot to save one file
This commit is contained in:
@@ -491,6 +491,10 @@ static int CmdHF14AJookiSim(const char *Cmd) {
|
||||
|
||||
// hf mfu sim...
|
||||
uint8_t *data = calloc(144, sizeof(uint8_t));
|
||||
if (data == NULL) {
|
||||
PrintAndLogEx(ERR, "Memory allocation failed");
|
||||
return PM3_EMALLOC;
|
||||
}
|
||||
|
||||
memcpy(data, uid, 3);
|
||||
memcpy(data + (1 * 4), uid + 3, 4);
|
||||
|
||||
Reference in New Issue
Block a user