mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-03 19:43:09 +08:00
Merge pull request #21 from alexgrin/iceman_master
FIX: erroneous semicolon
This commit is contained in:
commit
07b9e98970
1 changed files with 1 additions and 1 deletions
|
@ -1326,7 +1326,7 @@ uint8_t k_sectorsCount = 16;
|
|||
void readerAttack(nonces_t data[], bool setEmulatorMem) {
|
||||
|
||||
// initialize storage for found keys
|
||||
if (k_sector == NULL);
|
||||
if (k_sector == NULL)
|
||||
k_sector = calloc(k_sectorsCount, sizeof(sector));
|
||||
if (k_sector == NULL)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue