mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
deleted unnecessary memory checks (passwords are uploaded blockwise, the more passwords the more blocks)
This commit is contained in:
parent
b91792f1d7
commit
7c0c4e2e7d
1 changed files with 0 additions and 9 deletions
|
@ -1312,15 +1312,6 @@ int CmdEM4x50Chk(const char *Cmd) {
|
|||
res = loadFileDICTIONARY(filename, data + 2, &datalen, 4, &key_count);
|
||||
if (res || !key_count)
|
||||
return PM3_EFILE;
|
||||
|
||||
// limited space on flash mem
|
||||
if (key_count > 0xFFFF)
|
||||
key_count &= 0xFFFF;
|
||||
|
||||
if (datalen > FLASH_MEM_MAX_SIZE) {
|
||||
PrintAndLogEx(FAILED, "error, filesize is larger than available memory");
|
||||
return PM3_EOVFLOW;
|
||||
}
|
||||
|
||||
PrintAndLogEx(INFO, "You can cancel this operation by pressing the pm3 button");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue