]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
Pull request #3650: http_inspect: add override to destructor
authorTom Peters (thopeter) <thopeter@cisco.com>
Tue, 1 Nov 2022 18:28:31 +0000 (18:28 +0000)
committerTom Peters (thopeter) <thopeter@cisco.com>
Tue, 1 Nov 2022 18:28:31 +0000 (18:28 +0000)
Merge in SNORT/snort3 from ~THOPETER/snort3:issue_fix to master

Squashed commit of the following:

commit 24ab14e54f8071b8b81036c46d310329da32e329
Author: Tom Peters <thopeter@cisco.com>
Date:   Tue Nov 1 11:12:48 2022 -0400

    http_inspect: add override to destructor

src/service_inspectors/http_inspect/ips_http_param.h

index baec16323f57bb51a2ac8af6f301281ed151f07c..50fd5c48f8427e598103508d9858b36126c27c3b 100644 (file)
@@ -39,7 +39,7 @@ public:
         : HttpRuleOptModule(key_, help, rule_opt_index_, cat_, params)
     { search_handle = snort::LiteralSearch::setup(); }
 
-    ~HttpParamRuleOptModule()
+    ~HttpParamRuleOptModule() override
     { snort::LiteralSearch::cleanup(search_handle); }
 
     snort::ProfileStats* get_profile() const override { return &http_param_ps; }