mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
Fixed issue with dumping iclass tags > 2KB in size
This commit is contained in:
@@ -345,7 +345,7 @@ int CmdHFiClassReader_Dump(const char *Cmd)
|
||||
if(dataLength > 0)
|
||||
{
|
||||
PrintAndLog("Got %d bytes data (total so far %d)" ,dataLength,iclass_datalen);
|
||||
memcpy(iclass_data, resp.d.asBytes,dataLength);
|
||||
memcpy(iclass_data+iclass_datalen, resp.d.asBytes,dataLength);
|
||||
iclass_datalen += dataLength;
|
||||
}else
|
||||
{//Last transfer, datalength 0 means the dump is finished
|
||||
|
||||
Reference in New Issue
Block a user