selftests/bpf: Free inner strings index in btf selftest
Inner array of allocated strings wasn't freed on success. Now it's always freed. Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Reviewed-by: Hengqi Chen <hengqi.chen@gmail.com> Link: https://lore.kernel.org/bpf/20211107165521.9240-6-andrii@kernel.org
This commit is contained in:
parent
b8b26e585f
commit
5309b516bc
|
@ -4046,11 +4046,9 @@ static void *btf_raw_create(const struct btf_header *hdr,
|
|||
next_str_idx < strs_cnt ? strs_idx[next_str_idx] : NULL;
|
||||
|
||||
done:
|
||||
if (err) {
|
||||
if (raw_btf)
|
||||
free(raw_btf);
|
||||
if (strs_idx)
|
||||
free(strs_idx);
|
||||
if (err) {
|
||||
free(raw_btf);
|
||||
return NULL;
|
||||
}
|
||||
return raw_btf;
|
||||
|
|
Loading…
Reference in New Issue