From 170e7c9c51bf257c80887c5037ecfd33ea2c5164 Mon Sep 17 00:00:00 2001 From: Alexis Green Date: Sun, 7 Aug 2016 20:07:25 -0700 Subject: [PATCH] FIX: erroneous semicolon --- client/cmdhfmf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdhfmf.c b/client/cmdhfmf.c index 1988fa16..ec542eb3 100644 --- a/client/cmdhfmf.c +++ b/client/cmdhfmf.c @@ -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; -- 2.39.2