From: iceman1001 Date: Tue, 9 Feb 2016 13:48:42 +0000 (+0100) Subject: CHG: moved a call to "free" to outside of if-statement. X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/46a33c182dc645ff785ef8fcb880c57ac0a02783?hp=-c CHG: moved a call to "free" to outside of if-statement. --- 46a33c182dc645ff785ef8fcb880c57ac0a02783 diff --git a/client/proxmark3.c b/client/proxmark3.c index 091f6d08..907f5e7f 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); }