mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 18:25:07 +08:00
fix: logic inversion in loadFileDICTIONARY_safe use of CheckStringIsHEXValue
This commit is contained in:
parent
01560dda81
commit
75841e7b20
1 changed files with 1 additions and 1 deletions
|
@ -1016,7 +1016,7 @@ int loadFileDICTIONARY_safe(const char *preferredName, void **pdata, uint8_t key
|
|||
if (line[0] == '#')
|
||||
continue;
|
||||
|
||||
if (CheckStringIsHEXValue(line))
|
||||
if (!CheckStringIsHEXValue(line))
|
||||
continue;
|
||||
|
||||
uint64_t key = strtoull(line, NULL, 16);
|
||||
|
|
Loading…
Reference in a new issue