Skip to content

Commit

Permalink
Don't return from main(), use EXIT() instead
Browse files Browse the repository at this point in the history
Reviewed-by: Rich Salz <rsalz@openssl.org>
  • Loading branch information
levitte committed Jan 13, 2016
1 parent c3944a9 commit aa14779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = {
Expand Down

0 comments on commit aa14779

Please sign in to comment.