Commit e3869792 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

kprobes: fix sparse NULL warning

Fix sparse NULL warnings:
kernel/kprobes.c:915:49: warning: Using plain integer as NULL pointer
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Acked-by: default avatarAnanth N Mavinakayanahalli <ananth@in.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 880ebdc5
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include <linux/hash.h> #include <linux/hash.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/stddef.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/moduleloader.h> #include <linux/moduleloader.h>
#include <linux/kallsyms.h> #include <linux/kallsyms.h>
...@@ -912,7 +913,7 @@ static int __kprobes debugfs_kprobe_init(void) ...@@ -912,7 +913,7 @@ static int __kprobes debugfs_kprobe_init(void)
if (!dir) if (!dir)
return -ENOMEM; return -ENOMEM;
file = debugfs_create_file("list", 0444, dir , 0 , file = debugfs_create_file("list", 0444, dir, NULL,
&debugfs_kprobes_operations); &debugfs_kprobes_operations);
if (!file) { if (!file) {
debugfs_remove(dir); debugfs_remove(dir);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment