Merge pull request #1922 from DidierA/fix_cmdlist

bugfix: wrong text in hf mfdes list when no data exists in trace
This commit is contained in:
Iceman 2023-02-21 03:47:56 +01:00 committed by GitHub
commit 0f4d6492f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -898,7 +898,7 @@ void annotateMfDesfire(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize) {
snprintf(exp, size, "R-block NACK(%d)", (cmd[0] & 0x01));
}
// I-block 000xCN1x
else if ((cmd[0] & 0xC0) == 0x00) {
else if (((cmd[0] & 0xC0) == 0x00) && (cmdsize > 2)) {
// PCB [CID] [NAD] [INF] CRC CRC
int pos = 1;