mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-04 15:20:27 +08:00
Merge pull request #262 from merlokk/fix_sea
fix rare emv search behavior
This commit is contained in:
commit
2bd1be9aba
1 changed files with 2 additions and 2 deletions
|
@ -538,8 +538,8 @@ int EMVSearch(EMVCommandChannel channel, bool ActivateField, bool LeaveFieldON,
|
|||
if (++retrycnt < 3) {
|
||||
i--;
|
||||
} else {
|
||||
// (1) - card select error, proxmark error OR (200) - result length = 0
|
||||
if (res == 1 || res == 200) {
|
||||
// (1) - card select error, (4) reply timeout, (200) - result length = 0
|
||||
if (res == 1 || res == 4 ||res == 200) {
|
||||
if (!LeaveFieldON)
|
||||
DropFieldEx(channel);
|
||||
|
||||
|
|
Loading…
Reference in a new issue