mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-07-30 19:40:37 -07:00
fix some coverity
This commit is contained in:
parent
010668ebb1
commit
dee03b414c
2 changed files with 6 additions and 10 deletions
|
@ -1706,9 +1706,9 @@ static int CmdHF15Dump(const char *Cmd) {
|
|||
}
|
||||
|
||||
if (blklen == 8) {
|
||||
pm3_save_dump(filename, data, (blocknum * blklen), jsf15_v3);
|
||||
pm3_save_dump(filename, data, (size_t)(blocknum * blklen), jsf15_v3);
|
||||
} else {
|
||||
pm3_save_dump(filename, data, (blocknum * blklen), jsf15_v2);
|
||||
pm3_save_dump(filename, data, (size_t)(blocknum * blklen), jsf15_v2);
|
||||
}
|
||||
return PM3_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue