dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] remove redundant NULL check before before kfree() in kernel/sysctl.c

Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Jesper Juhl 2005-06-25 14:58:48 -07:00 committed by Linus Torvalds
parent 486fd404fb
commit 5a6b454f80
1 changed files with 1 additions and 2 deletions

View File

@ -1000,8 +1000,7 @@ int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *ol
int error = parse_table(name, nlen, oldval, oldlenp,
newval, newlen, head->ctl_table,
&context);
if (context)
kfree(context);
kfree(context);
if (error != -ENOTDIR)
return error;
tmp = tmp->next;