mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fix cppchecker redundantcondition
This commit is contained in:
parent
deb08c0e66
commit
46782ed308
1 changed files with 1 additions and 1 deletions
|
@ -1021,7 +1021,7 @@ int ExchangeAPDU14a(uint8_t *datain, int datainlen, bool activateField, bool lea
|
|||
|
||||
// check R-block ACK
|
||||
//TODO check this one...
|
||||
if ((*dataoutlen == 0) && (*dataoutlen != 0 || chaining != chainBlockNotLast)) { // *dataoutlen!=0. 'A && (!A || B)' is equivalent to 'A && B'
|
||||
if ((*dataoutlen == 0) && (chaining != chainBlockNotLast)) {
|
||||
if (leaveSignalON == false)
|
||||
DropField();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue