mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
Two fixes for warnings when compiling on Ubuntu14.04.
FIX: a wrongly set parameter call to memset in CmdT55xxWipe . FIX: an ignored fread call in cmdhficlass.c,
This commit is contained in:
parent
bf32dd923f
commit
2b9006bd14
2 changed files with 6 additions and 2 deletions
|
@ -1317,7 +1317,7 @@ int CmdT55xxWipe(const char *Cmd) {
|
|||
if (!CmdT55xxWriteBlock(ptrData))
|
||||
PrintAndLog("Error writing blk %d", blk);
|
||||
|
||||
memset(writeData, sizeof(writeData), 0x00);
|
||||
memset(writeData,0x00, sizeof(writeData));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue