commit | dad239d08be1f2abe7e54d9332f1eb87acebf987 | [log] [tgz] |
---|---|---|
author | William Lallemand <wlallemand@haproxy.org> | Thu Jan 23 11:59:02 2020 +0100 |
committer | William Lallemand <wlallemand@haproxy.org> | Thu Jan 23 11:59:02 2020 +0100 |
tree | 6efb6e0a0f7b81af17ce7aa472bc5b4b60d74d1c | |
parent | 5c3c96fd361f7ab6ae237af802d04fe31720da1b [diff] |
BUG/MINOR: ssl: typo in previous patch The previous patch 5c3c96f ("BUG/MINOR: ssl: memory leak w/ the ocsp_issuer") contains a typo that prevent it to build. Should be backported in 2.1.
diff --git a/src/ssl_sock.c b/src/ssl_sock.c index 38e95fa..afcceae 100644 --- a/src/ssl_sock.c +++ b/src/ssl_sock.c
@@ -3128,7 +3128,7 @@ } if (ckch->ocsp_issuer) - X509_free(ocsp_issuer); + X509_free(ckch->ocsp_issuer); ckch->ocsp_issuer = NULL; }