projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91f6585
)
libbpf: Fix false uninitialized variable warning
author
Andrii Nakryiko
<andriin@fb.com>
Thu, 30 Apr 2020 02:14:36 +0000
(19:14 -0700)
committer
Daniel Borkmann
<daniel@iogearbox.net>
Thu, 30 Apr 2020 14:16:01 +0000
(16:16 +0200)
Some versions of GCC falsely detect that vi might not be initialized. That's
not true, but let's silence it with NULL initialization.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link:
https://lore.kernel.org/bpf/20200430021436.1522502-1-andriin@fb.com
tools/lib/bpf/libbpf.c
patch
|
blob
|
history
diff --git
a/tools/lib/bpf/libbpf.c
b/tools/lib/bpf/libbpf.c
index d86ff8214b9674dcc6af269cbd710760af46fe6d..977add1b73e2b602f8c27a0968b5b2a02a457617 100644
(file)
--- a/
tools/lib/bpf/libbpf.c
+++ b/
tools/lib/bpf/libbpf.c
@@
-5003,8
+5003,8
@@
static int bpf_object__collect_map_relos(struct bpf_object *obj,
GElf_Shdr *shdr, Elf_Data *data)
{
int i, j, nrels, new_sz, ptr_sz = sizeof(void *);
+ const struct btf_var_secinfo *vi = NULL;
const struct btf_type *sec, *var, *def;
- const struct btf_var_secinfo *vi;
const struct btf_member *member;
struct bpf_map *map, *targ_map;
const char *name, *mname;