lkdtm: cfi: use NULL for a null pointer rather than zero
authorColin Ian King <colin.i.king@gmail.com>
Sun, 12 Jun 2022 20:27:08 +0000 (21:27 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Jun 2022 14:16:07 +0000 (16:16 +0200)
There is a pointer being initialized with a zero, use NULL instead.

Cleans up sparse warning:
drivers/misc/lkdtm/cfi.c:100:27: warning: Using plain integer as NULL pointer

Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20220612202708.2754270-1-colin.i.king@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/lkdtm/cfi.c

index 666a7f4..71483cb 100644 (file)
@@ -97,7 +97,7 @@ static volatile int force_check;
 static void lkdtm_CFI_BACKWARD(void)
 {
        /* Use calculated gotos to keep labels addressable. */
-       void *labels[] = {0, &&normal, &&redirected, &&check_normal, &&check_redirected};
+       void *labels[] = { NULL, &&normal, &&redirected, &&check_normal, &&check_redirected };
 
        pr_info("Attempting unchecked stack return address redirection ...\n");