Commit 2c1ef383 authored by Ben Laurie's avatar Ben Laurie
Browse files

Generate an error on an invalid directory.

parent f6aed2cd
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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]

+5 −1
Original line number Diff line number Diff line
@@ -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;