diff options
author | Matus Fabian <matfabia@cisco.com> | 2024-12-10 10:07:11 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-12-10 17:54:54 +0000 |
commit | 499a9dd8756b4d95a511917c7248506baf6bb44f (patch) | |
tree | a5095a217bbc1a9ba8a198dff6cb178ce5553f0d /src | |
parent | 18eedde9f2c73735628627cffb6565b3573abc0b (diff) |
http: fix http_free_header_table
Type: fix
Change-Id: I014aebc84d0c219cc0c99120e9cd51fcc520a41c
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/http/http.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/http/http.h b/src/plugins/http/http.h index bcee69b7bb4..7405d3d3bf7 100644 --- a/src/plugins/http/http.h +++ b/src/plugins/http/http.h @@ -924,7 +924,6 @@ http_free_header_table (http_header_table_t *ht) vec_free (ht->headers); vec_free (ht->buf); hash_free (ht->value_by_name); - clib_mem_free (ht); } static uword |