mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 17:56:53 +08:00
coverity fix 286923
This commit is contained in:
parent
5e925962d3
commit
0759f886f4
1 changed files with 1 additions and 1 deletions
|
@ -2220,7 +2220,7 @@ static int CmdHF14ADesGetValueData(const char *Cmd) {
|
||||||
int len = 0;
|
int len = 0;
|
||||||
res = handler_desfire_getvalue(&value, &len);
|
res = handler_desfire_getvalue(&value, &len);
|
||||||
if (res == PM3_SUCCESS) {
|
if (res == PM3_SUCCESS) {
|
||||||
PrintAndLogEx(SUCCESS, "Successfully read value from File %u:", fileno);
|
PrintAndLogEx(SUCCESS, "Successfully read value from File %u:", fileno[0]);
|
||||||
PrintAndLogEx(NORMAL, "\nOffset | Data | Ascii");
|
PrintAndLogEx(NORMAL, "\nOffset | Data | Ascii");
|
||||||
PrintAndLogEx(NORMAL, "----------------------------------------------------------------------------");
|
PrintAndLogEx(NORMAL, "----------------------------------------------------------------------------");
|
||||||
for (int i = 0; i < len; i += 16) {
|
for (int i = 0; i < len; i += 16) {
|
||||||
|
|
Loading…
Reference in a new issue