bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH bpf-next 1/3] libbpf: fix uninitialized variable in btf_parse_type_sec
@ 2020-09-29 22:06 Andrii Nakryiko
  2020-09-29 22:06 ` [PATCH bpf-next 2/3] libbpf: compile libbpf under -O2 level by default and catch extra warnings Andrii Nakryiko
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Andrii Nakryiko @ 2020-09-29 22:06 UTC (permalink / raw)
  To: bpf, netdev, ast, daniel; +Cc: andrii.nakryiko, kernel-team, Andrii Nakryiko

Fix obvious unitialized variable use that wasn't reported by compiler. libbpf
Makefile changes to catch such errors are added separately.

Fixes: 3289959b97ca ("libbpf: Support BTF loading and raw data output in both endianness")
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
---
 tools/lib/bpf/btf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/lib/bpf/btf.c b/tools/lib/bpf/btf.c
index e1dbd766c698..398b1f345b3c 100644
--- a/tools/lib/bpf/btf.c
+++ b/tools/lib/bpf/btf.c
@@ -347,7 +347,7 @@ static int btf_parse_type_sec(struct btf *btf)
 	struct btf_header *hdr = btf->hdr;
 	void *next_type = btf->types_data;
 	void *end_type = next_type + hdr->type_len;
-	int err, i, type_size;
+	int err, i = 0, type_size;
 
 	/* VOID (type_id == 0) is specially handled by btf__get_type_by_id(),
 	 * so ensure we can never properly use its offset from index by
-- 
2.24.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-09-30  0:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29 22:06 [PATCH bpf-next 1/3] libbpf: fix uninitialized variable in btf_parse_type_sec Andrii Nakryiko
2020-09-29 22:06 ` [PATCH bpf-next 2/3] libbpf: compile libbpf under -O2 level by default and catch extra warnings Andrii Nakryiko
2020-09-30  0:03   ` Martin KaFai Lau
2020-09-29 22:06 ` [PATCH bpf-next 3/3] libbpf: compile in PIC mode only for shared library case Andrii Nakryiko
2020-09-30  0:04   ` Martin KaFai Lau
2020-09-30  0:01 ` [PATCH bpf-next 1/3] libbpf: fix uninitialized variable in btf_parse_type_sec Martin KaFai Lau
2020-09-30  0:10 ` patchwork-bot+bpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).