提交 d3a28e8b 编写于 作者: R Richard Levitte

EXIT() should mainly be exit(n), not return(n). OPENSSL_EXIT() will

take care of returning if necessary.
上级 0bd71d3b
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册