Commit c77ceb2e authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

perf annotate: Use zfree() to reduce chances of use after free



Do defensive programming by using zfree() to initialize freed pointers
to NULL, so that eventual use after free result in a NULL pointer deref
instead of more subtle behaviour.

Also include the missing linux/zalloc.h header directive.

Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 25feb605
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@
#include <linux/bitops.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/zalloc.h>
#include <subcmd/parse-options.h>
#include <subcmd/run-command.h>

@@ -1881,7 +1882,7 @@ symbol__disassemble_bpf_image(struct symbol *sym,
	if (dl)
		annotation_line__add(&dl->al, &notes->src->source);

	free(args->line);
	zfree(&args->line);
	return 0;
}