commit | a974e64aaaa8a6f99f55a68d28c07c04ecea2f50 | [log] [tgz] |
---|---|---|
author | Matt Caswell <matt@openssl.org> | Mon Nov 09 14:38:59 2015 +0000 |
committer | Matt Caswell <matt@openssl.org> | Tue Nov 10 23:02:44 2015 +0000 |
tree | 8813cd92bec23d1c450f4303c0ee72b743d68a95 | |
parent | 6329b6092b28b656be8a1e4a8363d2e3bcc32053 [diff] |
Fix SSL_use_certificate_chain_file The new function SSL_use_certificate_chain_file was always crashing in the internal function use_certificate_chain_file because it would pass a NULL value for SSL_CTX *, but use_certificate_chain_file would unconditionally try to dereference it. Reviewed-by: Stephen Henson <steve@openssl.org>