mirror of https://github.com/openssl/openssl.git
Don't return from main(), use EXIT() instead
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
c3944a9947
commit
aa14779267
|
|
@ -432,7 +432,7 @@ int main(int argc, char *argv[])
|
||||||
CRYPTO_mem_leaks(bio_err);
|
CRYPTO_mem_leaks(bio_err);
|
||||||
#endif
|
#endif
|
||||||
BIO_free(bio_err);
|
BIO_free(bio_err);
|
||||||
return (ret);
|
EXIT(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
OPTIONS exit_options[] = {
|
OPTIONS exit_options[] = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue