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

Commit b2af211f authored by Li Zefan's avatar Li Zefan Committed by Steven Rostedt
Browse files

tracing/filters: Fix MATCH_MIDDLE_ONLY filter matching



The @str might not be NULL-terminated if it's of type
DYN_STRING or STATIC_STRING, so we should use strnstr()
instead of strstr().

Signed-off-by: default avatarLi Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4B4E8753.2000102@cn.fujitsu.com>
Acked-by: default avatarFrederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent d5f1fb53
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -268,7 +268,7 @@ static int regex_match_front(char *str, struct regex *r, int len)


static int regex_match_middle(char *str, struct regex *r, int len)
static int regex_match_middle(char *str, struct regex *r, int len)
{
{
	if (strstr(str, r->pattern))
	if (strnstr(str, r->pattern, len))
		return 1;
		return 1;
	return 0;
	return 0;
}
}