diff --git a/rust/src/http2/http2.rs b/rust/src/http2/http2.rs index df9a30fbf2..83eb492cac 100644 --- a/rust/src/http2/http2.rs +++ b/rust/src/http2/http2.rs @@ -364,6 +364,8 @@ impl HTTP2Transaction { impl Drop for HTTP2Transaction { fn drop(&mut self) { + self.files.files_ts.free(); + self.files.files_tc.free(); self.free(); } }