Don't return from main(), use EXIT() instead
authorRichard Levitte <levitte@openssl.org>
Wed, 13 Jan 2016 16:04:19 +0000 (17:04 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 13 Jan 2016 17:06:46 +0000 (18:06 +0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
apps/openssl.c

index 6bd14ffce89001df8673cc599c1308baa9e25d12..4f2ba8cd1903a13953dce46e7060f8fae7494fdd 100644 (file)
@@ -432,7 +432,7 @@ int main(int argc, char *argv[])
     CRYPTO_mem_leaks(bio_err);
 #endif
     BIO_free(bio_err);
-    return (ret);
+    EXIT(ret);
 }
 
 OPTIONS exit_options[] = {