On Fri, May 11, 2018 at 9:49 PM, Steven Rostedt <rostedt@xxxxxxxxxxx> wrote: [] > > static int regex_match_front(char *str, struct regex *r, int len) > { > - if (len < r->len) > + if (len && len < r->len) > return 0; > > - if (strncmp(str, r->pattern, r->len) == 0) > - return 1; > - return 0; > + return strncmp(str, r->pattern, len) == 0; strncmp(..., r->len) still? > } Regards, Yann. -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html