[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <66dea869-f3e3-355d-928a-8894e672b914@iogearbox.net>
Date: Thu, 26 Apr 2018 22:55:54 +0200
From: Daniel Borkmann <daniel@...earbox.net>
To: John Fastabend <john.fastabend@...il.com>, ast@...nel.org,
jbenc@...hat.com
Cc: netdev@...r.kernel.org
Subject: Re: [bpf PATCH] bpf: fix uninitialized variable in bpf tools
On 04/26/2018 12:08 AM, John Fastabend wrote:
> Here the variable cont is used as the saved_pointer for a call to
> strtok_r(). It is safe to use the value uninitialized in this
> context however and the later reference is only ever used if
> the strtok_r is successful. But, 'gcc-5' at least doesn't have all
> this knowledge so initialize cont to NULL. Additionally, do the
> natural NULL check before accessing just for completness.
>
> The warning is the following:
>
> ./bpf/tools/bpf/bpf_dbg.c: In function ‘cmd_load’:
> ./bpf/tools/bpf/bpf_dbg.c:1077:13: warning: ‘cont’ may be used uninitialized in this function [-Wmaybe-uninitialized]
> } else if (matches(subcmd, "pcap") == 0) {
>
> Fixes: fd981e3c321a "filter: bpf_dbg: add minimal bpf debugger"
> Signed-off-by: John Fastabend <john.fastabend@...il.com>
Applied to bpf tree, thanks John!
Powered by blists - more mailing lists