From 46a33c182dc645ff785ef8fcb880c57ac0a02783 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 9 Feb 2016 14:48:42 +0100 Subject: [PATCH] CHG: moved a call to "free" to outside of if-statement. --- client/proxmark3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/proxmark3.c b/client/proxmark3.c index 091f6d08a..907f5e7f7 100644 --- a/client/proxmark3.c +++ b/client/proxmark3.c @@ -278,6 +278,6 @@ int main(int argc, char* argv[]) { // clean up mutex pthread_mutex_destroy(&print_lock); - + exit(0); }