mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-25 00:25:48 +08:00
fix coverity 290111
This commit is contained in:
parent
071ab7193c
commit
c53c79f0ba
1 changed files with 1 additions and 1 deletions
|
@ -4007,7 +4007,7 @@ static int CmdHF14aDesChk(const char *Cmd) {
|
|||
|
||||
endFilePosition = 0;
|
||||
res = loadFileDICTIONARYEx((char *)dict_filename, k3kkeyList, sizeof(k3kkeyList), NULL, 24, &k3kkeyListLen, 0, &endFilePosition, true);
|
||||
if (PM3_SUCCESS && endFilePosition)
|
||||
if (res == PM3_SUCCESS && endFilePosition)
|
||||
PrintAndLogEx(SUCCESS, "First part of k3kdes dictionary successfully loaded.");
|
||||
|
||||
endFilePosition = 0;
|
||||
|
|
Loading…
Reference in a new issue