mirror of
https://github.com/netdata/libbpf.git
synced 2026-04-10 18:49:06 +08:00
libbpf: Fix error path in bpf_object__elf_init()
When it failed to get section names, it should call into
bpf_object__elf_finish() like others.
Fixes: 88a82120282b ("libbpf: Factor out common ELF operations and improve logging")
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20210317145414.884817-1-namhyung@kernel.org
This commit is contained in:
committed by
Andrii Nakryiko
parent
186ffbe0b5
commit
c903b3ab70
@@ -1194,7 +1194,8 @@ static int bpf_object__elf_init(struct bpf_object *obj)
|
|||||||
if (!elf_rawdata(elf_getscn(obj->efile.elf, obj->efile.shstrndx), NULL)) {
|
if (!elf_rawdata(elf_getscn(obj->efile.elf, obj->efile.shstrndx), NULL)) {
|
||||||
pr_warn("elf: failed to get section names strings from %s: %s\n",
|
pr_warn("elf: failed to get section names strings from %s: %s\n",
|
||||||
obj->path, elf_errmsg(-1));
|
obj->path, elf_errmsg(-1));
|
||||||
return -LIBBPF_ERRNO__FORMAT;
|
err = -LIBBPF_ERRNO__FORMAT;
|
||||||
|
goto errout;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Old LLVM set e_machine to EM_NONE */
|
/* Old LLVM set e_machine to EM_NONE */
|
||||||
|
|||||||
Reference in New Issue
Block a user