commit | e03ddfae7ea7c27193d3f7c0eaa1d01704647d77 | [log] [tgz] |
---|---|---|
author | Ben Laurie <ben@openssl.org> | Thu Jan 07 19:15:59 1999 +0000 |
committer | Ben Laurie <ben@openssl.org> | Thu Jan 07 19:15:59 1999 +0000 |
tree | 7cf2e8444b222a3a52c4735e0415916bb81c4494 | |
parent | 6fa89f94c4452be54577eb071891d77c9e2abe16 [diff] [blame] |
Accept NULL in *_free.
diff --git a/crypto/err/err.c b/crypto/err/err.c index 5cf6218..39c997a 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c
@@ -175,6 +175,9 @@ { int i; + if(s == NULL) + return; + for (i=0; i<ERR_NUM_ERRORS; i++) { err_clear_data(s,i);