mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
FIX: an extra break inside "Hf mf cgetsc" made it not read the fourth block in the sector.
This commit is contained in:
parent
14dff8e330
commit
c7962313cc
1 changed files with 2 additions and 3 deletions
|
@ -1322,10 +1322,9 @@ void MifareCGetBlock(uint32_t arg0, uint32_t arg1, uint8_t *datain){
|
||||||
memcpy(data, receivedAnswer, sizeof(data));
|
memcpy(data, receivedAnswer, sizeof(data));
|
||||||
|
|
||||||
// send HALT
|
// send HALT
|
||||||
if (workFlags & MAGIC_HALT) {
|
if (workFlags & MAGIC_HALT)
|
||||||
mifare_classic_halt_ex(NULL);
|
mifare_classic_halt_ex(NULL);
|
||||||
break;
|
|
||||||
}
|
|
||||||
isOK = true;
|
isOK = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue