提交 2c1ef383 编写于 作者: B Ben Laurie

Generate an error on an invalid directory.

上级 f6aed2cd
......@@ -5,6 +5,11 @@
Changes between 0.9.1c and 0.9.2
*) Generate an error if given an empty string as a cert directory. Also
generate an error if handed NULL (previously returned 0 to indicate an
error, but didn't set one).
[Ben Laurie, reported by Anonymous <nobody@replay.com>]
*) Add prototypes to SSL methods. Make SSL_write's buffer const, at last.
[Ben Laurie]
......
......@@ -192,7 +192,11 @@ int type;
char *s,*ss,*p;
char **pp;
if (dir == NULL) return(0);
if (dir == NULL || !*dir)
{
X509err(X509_F_ADD_CERT_DIR,X509_R_INVALID_DIRECTORY);
return 0;
}
s=dir;
p=s;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册