libbpf: Fix memory leak in strset
Free struct strset itself, not just its internal parts.
Fixes: 90d76d3ece
("libbpf: Extract internal set-of-strings datastructure APIs")
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Martin KaFai Lau <kafai@fb.com>
Link: https://lore.kernel.org/bpf/20211001185910.86492-1-andrii@kernel.org
This commit is contained in:
parent
4729445b47
commit
b0e875bac0
@ -88,6 +88,7 @@ void strset__free(struct strset *set)
|
||||
|
||||
hashmap__free(set->strs_hash);
|
||||
free(set->strs_data);
|
||||
free(set);
|
||||
}
|
||||
|
||||
size_t strset__data_size(const struct strset *set)
|
||||
|
Loading…
Reference in New Issue
Block a user