mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 17:56:53 +08:00
FIX: 133853, If you have 3items in a array, don't start with index 4 or 3, mental note to self, stop coding when you are tired.
This commit is contained in:
parent
c23d2618ba
commit
8a8de2cb6d
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ int CmdJablotronClone(const char *Cmd) {
|
|||
UsbCommand resp;
|
||||
UsbCommand c = {CMD_T55XX_WRITE_BLOCK, {0,0,0}};
|
||||
|
||||
for (int i=3; i>=0; i--) {
|
||||
for (uint8_t i = 2; i >= 0; --i) {
|
||||
c.arg[0] = blocks[i];
|
||||
c.arg[1] = i;
|
||||
clearCommandBuffer();
|
||||
|
|
Loading…
Reference in a new issue