mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
CHG: removed an extra fclose call
This commit is contained in:
parent
1c6e7f0393
commit
4abb052f38
1 changed files with 0 additions and 2 deletions
|
@ -1627,7 +1627,6 @@ int CmdHF14AMfCLoad(const char *Cmd)
|
||||||
if (fgets(buf, sizeof(buf), f) == NULL) {
|
if (fgets(buf, sizeof(buf), f) == NULL) {
|
||||||
fclose(f);
|
fclose(f);
|
||||||
PrintAndLog("File reading error.");
|
PrintAndLog("File reading error.");
|
||||||
fclose(f);
|
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1952,7 +1951,6 @@ int CmdHF14AMfSniff(const char *Cmd){
|
||||||
}
|
}
|
||||||
if (wantDecrypt)
|
if (wantDecrypt)
|
||||||
mfTraceInit(uid, atqa, sak, wantSaveToEmlFile);
|
mfTraceInit(uid, atqa, sak, wantSaveToEmlFile);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
PrintAndLog("%s(%d):%s", isTag ? "TAG":"RDR", num, sprint_hex(bufPtr, len));
|
PrintAndLog("%s(%d):%s", isTag ? "TAG":"RDR", num, sprint_hex(bufPtr, len));
|
||||||
if (wantLogToFile)
|
if (wantLogToFile)
|
||||||
|
|
Loading…
Reference in a new issue