mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 18:57:12 +08:00
fix: 'hf 15 dump' memset bug
This commit is contained in:
parent
9d0ce1e874
commit
b526492d3d
1 changed files with 1 additions and 1 deletions
|
@ -641,7 +641,7 @@ int CmdHF15Dump(const char*Cmd) {
|
|||
uint8_t *recv = NULL;
|
||||
|
||||
uint8_t data[256*4] = {0};
|
||||
memset(data, sizeof(data), 0);
|
||||
memset(data, 0, sizeof(data));
|
||||
|
||||
UsbCommand resp;
|
||||
UsbCommand c = {CMD_ISO_15693_COMMAND, {0, 1, 1}}; // len,speed,recv?
|
||||
|
|
Loading…
Reference in a new issue