mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -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,8 +1781,8 @@ int CmdHF14AMfUDump(const char *Cmd){
|
|||
return 1;
|
||||
}
|
||||
|
||||
bool is_partial = (pages == bufferSize/4);
|
||||
|
||||
bool is_partial = (pages != bufferSize/4);
|
||||
|
||||
pages = bufferSize/4;
|
||||
|
||||
uint8_t get_pack[] = {0,0};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue