mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 04:26:41 +08:00
fix coverity
This commit is contained in:
parent
e41e871014
commit
c6902245f0
1 changed files with 1 additions and 2 deletions
|
@ -3071,7 +3071,7 @@ static int counter_reset_tear(iso14a_card_select_t *card, uint8_t cnt_no) {
|
|||
PrintAndLogEx(FAILED, "failed to select card, exiting...");
|
||||
return PM3_ESOFT;
|
||||
}
|
||||
if (ul_send_cmd_raw(cw, sizeof(cw), resp, sizeof(resp) < 0)) {
|
||||
if (ul_send_cmd_raw(cw, sizeof(cw), resp, sizeof(resp)) < 0) {
|
||||
PrintAndLogEx(FAILED, "failed to write all ZEROS");
|
||||
return PM3_ESOFT;
|
||||
}
|
||||
|
@ -3452,7 +3452,6 @@ static int CmdHF14AMfuEv1CounterTearoff(const char *Cmd) {
|
|||
return PM3_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
static int CmdHF14MfuNDEF(const char *Cmd) {
|
||||
|
||||
int keylen;
|
||||
|
|
Loading…
Reference in a new issue