]> www.infradead.org Git - users/willy/linux.git/commitdiff
bpftool: Properly close va_list 'ap' by va_end() on error
authorGu Shengxian <gushengxian@yulong.com>
Tue, 6 Jul 2021 01:35:43 +0000 (18:35 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Tue, 6 Jul 2021 07:19:23 +0000 (09:19 +0200)
va_list 'ap' was opened but not closed by va_end() in error case. It should
be closed by va_end() before the return.

Fixes: aa52bcbe0e72 ("tools: bpftool: Fix json dump crash on powerpc")
Signed-off-by: Gu Shengxian <gushengxian@yulong.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/bpf/20210706013543.671114-1-gushengxian507419@gmail.com
tools/bpf/bpftool/jit_disasm.c

index e7e7eee9f172509919aa90d6339d29350ca1598c..24734f2249d6ec9f6dca08ad1b186c3787299c97 100644 (file)
@@ -43,11 +43,13 @@ static int fprintf_json(void *out, const char *fmt, ...)
 {
        va_list ap;
        char *s;
+       int err;
 
        va_start(ap, fmt);
-       if (vasprintf(&s, fmt, ap) < 0)
-               return -1;
+       err = vasprintf(&s, fmt, ap);
        va_end(ap);
+       if (err < 0)
+               return -1;
 
        if (!oper_count) {
                int i;