You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2020/06/09 19:28:35 UTC

[trafficserver] branch 9.0.x updated: Fix missing virtual destructor in TLSSessionResumptionSupport. (#6812)

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 4949c6a  Fix missing virtual destructor in TLSSessionResumptionSupport. (#6812)
4949c6a is described below

commit 4949c6a0bf09f7ff5057702e611c97882efd8431
Author: Alan M. Carroll <am...@apache.org>
AuthorDate: Fri Jun 5 14:51:44 2020 -0500

    Fix missing virtual destructor in TLSSessionResumptionSupport. (#6812)
    
    (cherry picked from commit 324fae37a9e5758da4dc9aca68ec385f2807fa87)
---
 iocore/net/TLSSessionResumptionSupport.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/iocore/net/TLSSessionResumptionSupport.h b/iocore/net/TLSSessionResumptionSupport.h
index e0cb807..466618b 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);