Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 82afae60 authored by Erdem Aktas's avatar Erdem Aktas Committed by Ingo Molnar
Browse files

perf_counter tools: fix buffer overwrite problem for perf top command



There is a buffer overwrite problem in builtin-top.c line 526, When I
tried to use ./perf top command, it was giving memory corruption
problem.

[ Impact: fix 'perf top' crash ]

LKML-Reference: <3fee128b0905092313x608e65e0l7b1116d86914114f@mail.gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent f15b18d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -523,7 +523,7 @@ static int read_symbol(FILE *in, struct sym_entry *s)
	if (strstr(sym, "_text_start") || strstr(sym, "_text_end"))
	if (strstr(sym, "_text_start") || strstr(sym, "_text_end"))
		return 1;
		return 1;


	s->sym = malloc(strlen(str));
	s->sym = malloc(strlen(str)+1);
	assert(s->sym);
	assert(s->sym);


	strcpy((char *)s->sym, str);
	strcpy((char *)s->sym, str);