Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Commit

Permalink
Merge pull request #21 from alexgrin/iceman_master
Browse files Browse the repository at this point in the history
FIX: erroneous semicolon
  • Loading branch information
iceman1001 authored Aug 8, 2016
2 parents 29f8c2c + 170e7c9 commit 07b9e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/cmdhfmf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 07b9e98

Please sign in to comment.