diff options
| author | Namhyung Kim <[email protected]> | 2021-03-17 14:54:14 +0000 |
|---|---|---|
| committer | Daniel Borkmann <[email protected]> | 2021-03-17 23:42:21 +0000 |
| commit | 8f3f5792f2940c16ab63c614b26494c8689c9c1e (patch) | |
| tree | 78d28efc44edc22e80a822603631cb0ff15e2a4d /tools/lib/bpf/libbpf.c | |
| parent | bpf: Fix fexit trampoline. (diff) | |
| download | kernel-8f3f5792f2940c16ab63c614b26494c8689c9c1e.tar.gz kernel-8f3f5792f2940c16ab63c614b26494c8689c9c1e.zip | |
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 <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'tools/lib/bpf/libbpf.c')
| -rw-r--r-- | tools/lib/bpf/libbpf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c index d43cc3f29dae..4181d178ee7b 100644 --- a/tools/lib/bpf/libbpf.c +++ b/tools/lib/bpf/libbpf.c @@ -1181,7 +1181,8 @@ static int bpf_object__elf_init(struct bpf_object *obj) 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", obj->path, elf_errmsg(-1)); - return -LIBBPF_ERRNO__FORMAT; + err = -LIBBPF_ERRNO__FORMAT; + goto errout; } /* Old LLVM set e_machine to EM_NONE */ |
