Merge pull request #951 from McEloff/hf_mf_gen3_fix

Fix: magic gen 3 card response check
This commit is contained in:
Iceman 2020-09-08 22:13:54 +02:00 committed by GitHub
commit e1b2011dcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2347,7 +2347,7 @@ int DoGen3Cmd(uint8_t *cmd, uint8_t cmd_len) {
ReaderTransmit(cmd, cmd_len, NULL);
int res = ReaderReceive(buf, par);
if (res == 4 || memcmp(buf, "\x90\x00\xfd\x07", 4) == 0) {
if (res == 4 && memcmp(buf, "\x90\x00\xfd\x07", 4) == 0) {
// timeout for card memory reset
SpinDelay(1000);
} else {