diff options
author | lloyd <[email protected]> | 2009-12-30 03:16:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-30 03:16:07 +0000 |
commit | 006e9273148d752dd722907f393b938486e9d035 (patch) | |
tree | 93324e7fba17d08fc800a7ce1c42c79710548752 /src | |
parent | 477de012e6593e79a2824bdff6be16cd4d186ab3 (diff) |
Buffered_Filter had virtual functions but not a virtual destructor
Diffstat (limited to 'src')
-rw-r--r-- | src/filters/buf_filt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/filters/buf_filt.h b/src/filters/buf_filt.h index 836fa22b6..de4102844 100644 --- a/src/filters/buf_filt.h +++ b/src/filters/buf_filt.h @@ -19,6 +19,8 @@ class BOTAN_DLL Buffered_Filter void end_msg(); Buffered_Filter(u32bit block_size, u32bit final_minimum); + + virtual ~Buffered_Filter() {} protected: virtual std::string name() const = 0; |