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

Commit b36461da authored by Atsushi Tsuji's avatar Atsushi Tsuji Committed by Steven Rostedt
Browse files

tracing: Fix minor bugs for __unregister_ftrace_function_probe



Fix the condition of strcmp for "*".
Also fix NULL pointer dereference when glob is NULL.

Signed-off-by: default avatarAtsushi Tsuji <a-tsuji@bk.jp.nec.com>
LKML-Reference: <4AAF6726.5090905@bk.jp.nec.com>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent fe832a3a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2062,9 +2062,9 @@ __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
	int i, len = 0;
	char *search;

	if (glob && (strcmp(glob, "*") || !strlen(glob)))
	if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
		glob = NULL;
	else {
	else if (glob) {
		int not;

		type = ftrace_setup_glob(glob, strlen(glob), &search, &not);