mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
fix memory copy...
This commit is contained in:
parent
07983aa1b4
commit
6df068f817
1 changed files with 1 additions and 1 deletions
|
@ -687,7 +687,7 @@ static int read_xerox_block(iso14b_card_select_t *card, uint8_t blockno, uint8_t
|
|||
break;
|
||||
}
|
||||
|
||||
memcpy(out + (blockno * XEROX_BLOCK_SIZE), d + 1, XEROX_BLOCK_SIZE);
|
||||
memcpy(out, d + 1, XEROX_BLOCK_SIZE);
|
||||
res = PM3_SUCCESS;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue