mirror of
https://github.com/netdata/libbpf.git
synced 2026-04-06 08:39:06 +08:00
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: Gaosheng Cui <cuigaosheng1@huawei.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20220421031803.2283974-1-cuigaosheng1@huawei.com
This commit is contained in:
committed by
Andrii Nakryiko
parent
5fa8bb6b42
commit
38be0379c9
@@ -1233,10 +1233,8 @@ static void bpf_object__elf_finish(struct bpf_object *obj)
|
|||||||
if (!obj->efile.elf)
|
if (!obj->efile.elf)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (obj->efile.elf) {
|
elf_end(obj->efile.elf);
|
||||||
elf_end(obj->efile.elf);
|
obj->efile.elf = NULL;
|
||||||
obj->efile.elf = NULL;
|
|
||||||
}
|
|
||||||
obj->efile.symbols = NULL;
|
obj->efile.symbols = NULL;
|
||||||
obj->efile.st_ops_data = NULL;
|
obj->efile.st_ops_data = NULL;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user