Commit b71a2ebf authored by Gaosheng Cui's avatar Gaosheng Cui Committed by Andrii Nakryiko
Browse files

libbpf: Remove redundant non-null checks on obj_elf



Obj_elf is already non-null checked at the function entry, so remove
redundant non-null checks on obj_elf.

Signed-off-by: default avatarGaosheng Cui <cuigaosheng1@huawei.com>
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20220421031803.2283974-1-cuigaosheng1@huawei.com
parent c14766a8
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1233,10 +1233,8 @@ static void bpf_object__elf_finish(struct bpf_object *obj)
	if (!obj->efile.elf)
		return;

	if (obj->efile.elf) {
	elf_end(obj->efile.elf);
	obj->efile.elf = NULL;
	}
	obj->efile.symbols = NULL;
	obj->efile.st_ops_data = NULL;