From c6ebdfe42e13db5e00ed7dbe4f1808fe67d58379 Mon Sep 17 00:00:00 2001 From: "Amarnath Sathyanarayanan (amsathya)" Date: Mon, 29 Jul 2019 19:09:31 -0400 Subject: [PATCH] Merge pull request #1693 in SNORT/snort3 from ~AMSATHYA/snort3:identity_plugin to master Squashed commit of the following: commit d75324ae893f9f11fb46af80bd9605dbaba1d54a Author: haow3 Date: Fri Jul 26 16:51:56 2019 -0400 flow: add virtual destructor to stash generic object --- src/flow/stash_item.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/flow/stash_item.h b/src/flow/stash_item.h index 63daf304c..52e7618de 100644 --- a/src/flow/stash_item.h +++ b/src/flow/stash_item.h @@ -34,7 +34,10 @@ public: { } + virtual ~StashGenericObject() + { + } int get_object_type() { return object_type; -- 2.47.3