mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
fix cppchecker scope
This commit is contained in:
parent
46782ed308
commit
e2e6541932
1 changed files with 2 additions and 4 deletions
|
@ -1977,15 +1977,13 @@ int infoHF14A(bool verbose, bool do_nack_test, bool do_aid_search) {
|
||||||
|
|
||||||
if (do_aid_search) {
|
if (do_aid_search) {
|
||||||
|
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "-------------------- " _CYAN_("AID Search") " --------------------");
|
PrintAndLogEx(INFO, "-------------------- " _CYAN_("AID Search") " --------------------");
|
||||||
|
|
||||||
bool found = false;
|
|
||||||
size_t elmindx = 0;
|
|
||||||
json_t *root = AIDSearchInit(verbose);
|
json_t *root = AIDSearchInit(verbose);
|
||||||
if (root != NULL) {
|
if (root != NULL) {
|
||||||
|
bool found = false;
|
||||||
bool ActivateField = true;
|
bool ActivateField = true;
|
||||||
for (elmindx = 0; elmindx < json_array_size(root); elmindx++) {
|
for (size_t elmindx = 0; elmindx < json_array_size(root); elmindx++) {
|
||||||
|
|
||||||
if (kbd_enter_pressed()) {
|
if (kbd_enter_pressed()) {
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue