mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-24 23:25:40 -07:00
fix 14b dump
This commit is contained in:
parent
0cbc0c2f8b
commit
32f892e512
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,7 @@ static bool get_14b_UID(uint8_t *d, iso14b_type_t *found_type) {
|
|||
|
||||
iso14b_card_select_t *card = (iso14b_card_select_t*)d;
|
||||
uint8_t empty[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||
if (memcmp(card->uid, empty, card->uidlen)) {
|
||||
if (memcmp(card->uid, empty, card->uidlen) == 0) {
|
||||
return false;
|
||||
}
|
||||
*found_type = ISO14B_SR;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue