mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -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
|
@ -1313,15 +1313,6 @@ int CmdEM4x50Chk(const char *Cmd) {
|
||||||
if (res || !key_count)
|
if (res || !key_count)
|
||||||
return PM3_EFILE;
|
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");
|
PrintAndLogEx(INFO, "You can cancel this operation by pressing the pm3 button");
|
||||||
|
|
||||||
if (datalen > CARD_MEMORY_SIZE) {
|
if (datalen > CARD_MEMORY_SIZE) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue