EXIT() should mainly be exit(n), not return(n). OPENSSL_EXIT() will
take care of returning if necessary.
This commit is contained in:
parent
0d5b4f594d
commit
844df66895
1 changed files with 1 additions and 1 deletions
2
e_os.h
2
e_os.h
|
@ -250,7 +250,7 @@ extern "C" {
|
|||
# define EXIT(n) _wsetexit(_WINEXITNOPERSIST)
|
||||
# define OPENSSL_EXIT(n) do { if (n == 0) EXIT(n); return(n); } while(0)
|
||||
# else
|
||||
# define EXIT(n) return(n)
|
||||
# define EXIT(n) exit(n)
|
||||
# endif
|
||||
# define LIST_SEPARATOR_CHAR ';'
|
||||
# ifndef X_OK
|
||||
|
|
Loading…
Reference in a new issue