mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-06 13:03:19 +08:00
fix cppchecker
This commit is contained in:
parent
8d18860c6a
commit
2ffcdc67f6
1 changed files with 2 additions and 1 deletions
|
@ -326,7 +326,8 @@ void RunMod(void) {
|
|||
|
||||
|
||||
if (i == 4) {
|
||||
if (apdubuffer[1] == 0x1b && apdubuffer[2] == 0xd1 && !gotndef) { //Get NDEF Data
|
||||
// Get NDEF Data
|
||||
if (apdubuffer[1] == 0x1b && apdubuffer[2] == 0xd1) {
|
||||
gotndef = true;
|
||||
memcpy(&ndef, &apdubuffer, apdulen - 2);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue