mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-11 07:23:40 +08:00
fix coverity 290271
This commit is contained in:
parent
bd8edced9b
commit
19f2c0ef89
1 changed files with 2 additions and 2 deletions
|
@ -1731,7 +1731,7 @@ static int CmdEMVScan(const char *Cmd) {
|
|||
if (ODAI_listlen) {
|
||||
struct tlvdb *oda = tlvdb_fixed(0x21, ODAI_listlen, ODAI_list); // not a standard tag
|
||||
tlvdb_add(tlvRoot, oda);
|
||||
PrintAndLogEx(INFO, "Input list for Offline Data Authentication added to TLV [%d bytes]", ODAI_listlen);
|
||||
PrintAndLogEx(INFO, "Input list for Offline Data Authentication added to TLV [%zu bytes]", ODAI_listlen);
|
||||
}
|
||||
|
||||
// getting certificates
|
||||
|
@ -1988,7 +1988,7 @@ static int CmdEMVRoca(const char *Cmd) {
|
|||
if (ODAI_listlen) {
|
||||
struct tlvdb *oda = tlvdb_fixed(0x21, ODAI_listlen, ODAI_list); // not a standard tag
|
||||
tlvdb_add(tlvRoot, oda);
|
||||
PrintAndLogEx(INFO, "Input list for Offline Data Authentication added to TLV [%d bytes]", ODAI_listlen);
|
||||
PrintAndLogEx(INFO, "Input list for Offline Data Authentication added to TLV [%zu bytes]", ODAI_listlen);
|
||||
}
|
||||
|
||||
if (tlvdb_get(tlvRoot, 0x90, NULL)) {
|
||||
|
|
Loading…
Reference in a new issue