From 62a984525611f934aab8f9b42612d202c1fcd315 Mon Sep 17 00:00:00 2001 From: "Alan M. Carroll" Date: Wed, 20 May 2020 17:29:33 -0500 Subject: [PATCH] Fix missing virtual destructor in TLSSessionResumptionSupport. --- iocore/net/TLSSessionResumptionSupport.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iocore/net/TLSSessionResumptionSupport.h b/iocore/net/TLSSessionResumptionSupport.h index e0cb807e6e0..466618b9e9b 100644 --- a/iocore/net/TLSSessionResumptionSupport.h +++ b/iocore/net/TLSSessionResumptionSupport.h @@ -33,6 +33,8 @@ class TLSSessionResumptionSupport { public: + virtual ~TLSSessionResumptionSupport() = default; + static void initialize(); static TLSSessionResumptionSupport *getInstance(SSL *ssl); static void bind(SSL *ssl, TLSSessionResumptionSupport *srs);