cppcheck mem alloc: oops forgot to save one file

This commit is contained in:
Philippe Teuwen 2025-03-24 10:47:33 +01:00
commit 74c60301d1

View file

@ -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);