kdb: Replace strncmp with str_has_prefix
authorChuhong Yuan <hslester96@gmail.com>
Mon, 29 Jul 2019 15:13:59 +0000 (23:13 +0800)
committerDaniel Thompson <daniel.thompson@linaro.org>
Tue, 3 Sep 2019 10:19:31 +0000 (11:19 +0100)
strncmp(str, const, len) is error-prone.
We had better use newly introduced
str_has_prefix() instead of it.

Signed-off-by: Chuhong Yuan <hslester96@gmail.com>
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
kernel/debug/kdb/kdb_main.c

index 9ecfa37..4567fe9 100644 (file)
@@ -830,7 +830,7 @@ static void parse_grep(const char *str)
        cp++;
        while (isspace(*cp))
                cp++;
-       if (strncmp(cp, "grep ", 5)) {
+       if (!str_has_prefix(cp, "grep ")) {
                kdb_printf("invalid 'pipe', see grephelp\n");
                return;
        }