diff --git a/client/src/cmdlfhitag.c b/client/src/cmdlfhitag.c index cdefd8a00..a9f21d4fe 100644 --- a/client/src/cmdlfhitag.c +++ b/client/src/cmdlfhitag.c @@ -339,9 +339,10 @@ static int CmdLFHitagEload(const char *Cmd) { clearCommandBuffer(); SendCommandNG(CMD_LF_HITAG_ELOAD, (uint8_t *)&payload, 2 + dumplen); } else { - PrintAndLogEx(ERR, "error, wrong dump file size. got %u", dumplen); + PrintAndLogEx(ERR, "error, wrong dump file size. got %zu", dumplen); } + free(dump); return PM3_SUCCESS; }