Commit 4a04cb32 authored by Pu Lehui's avatar Pu Lehui Committed by Andrii Nakryiko
Browse files

selftests/bpf: Fix btf leak on new btf alloc failure in btf_distill test



Fix btf leak on new btf alloc failure in btf_distill test.

Fixes: affdeb50 ("selftests/bpf: Extend distilled BTF tests to cover BTF relocation")
Signed-off-by: default avatarPu Lehui <pulehui@huawei.com>
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20250115100241.4171581-1-pulehui@huaweicloud.com
parent 7c311b7c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -385,7 +385,7 @@ static void test_distilled_base_missing_err(void)
		"[2] INT 'int' size=8 bits_offset=0 nr_bits=64 encoding=SIGNED");
	btf5 = btf__new_empty();
	if (!ASSERT_OK_PTR(btf5, "empty_reloc_btf"))
		return;
		goto cleanup;
	btf__add_int(btf5, "int", 4, BTF_INT_SIGNED);   /* [1] int */
	VALIDATE_RAW_BTF(
		btf5,
@@ -478,7 +478,7 @@ static void test_distilled_base_multi_err2(void)
		"[1] INT 'int' size=4 bits_offset=0 nr_bits=32 encoding=SIGNED");
	btf5 = btf__new_empty();
	if (!ASSERT_OK_PTR(btf5, "empty_reloc_btf"))
		return;
		goto cleanup;
	btf__add_int(btf5, "int", 4, BTF_INT_SIGNED);   /* [1] int */
	btf__add_int(btf5, "int", 4, BTF_INT_SIGNED);   /* [2] int */
	VALIDATE_RAW_BTF(