mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
fix: 'hf mfu dump' - partial dump detection
This commit is contained in:
parent
3e7576c86d
commit
d815ebdd4e
1 changed files with 2 additions and 2 deletions
|
@ -1781,7 +1781,7 @@ int CmdHF14AMfUDump(const char *Cmd){
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool is_partial = (pages == bufferSize/4);
|
bool is_partial = (pages != bufferSize/4);
|
||||||
|
|
||||||
pages = bufferSize/4;
|
pages = bufferSize/4;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue