This is an automated email from the ASF dual-hosted git repository.
amc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 4be1c00 Add virtual destructor to SSLMultiCertConfigLoader.
4be1c00 is described below
commit 4be1c00da03d821808ba08b150db1f367895af18
Author: Alan M. Carroll <[email protected]>
AuthorDate: Fri Mar 8 10:17:40 2019 -0600
Add virtual destructor to SSLMultiCertConfigLoader.
---
iocore/net/P_SSLUtils.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/iocore/net/P_SSLUtils.h b/iocore/net/P_SSLUtils.h
index 3e3de60..648ed80 100644
--- a/iocore/net/P_SSLUtils.h
+++ b/iocore/net/P_SSLUtils.h
@@ -67,6 +67,7 @@ class SSLMultiCertConfigLoader
{
public:
SSLMultiCertConfigLoader(const SSLConfigParams *p) : _params(p) {}
+ virtual ~SSLMultiCertConfigLoader(){};
bool load(SSLCertLookup *lookup);