]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
bpftool: Fix a wrong type cast in btf_dumper_int
authorLam Thai <lamthai@arista.com>
Wed, 24 Aug 2022 22:59:00 +0000 (15:59 -0700)
committerAndrii Nakryiko <andrii@kernel.org>
Thu, 25 Aug 2022 18:43:08 +0000 (11:43 -0700)
commit7184aef9c0f7a81db8fd18d183ee42481d89bf35
treee762daee9dd5f24fc9f9465a757c215861ce9825
parenteef3c3d3373641b01c65af630d5e003cbabe6abe
bpftool: Fix a wrong type cast in btf_dumper_int

When `data` points to a boolean value, casting it to `int *` is problematic
and could lead to a wrong value being passed to `jsonw_bool`. Change the
cast to `bool *` instead.

Fixes: b12d6ec09730 ("bpf: btf: add btf print functionality")
Signed-off-by: Lam Thai <lamthai@arista.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Reviewed-by: Quentin Monnet <quentin@isovalent.com>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Link: https://lore.kernel.org/bpf/20220824225859.9038-1-lamthai@arista.com
tools/bpf/bpftool/btf_dumper.c