Commit 95eff20f authored by Jesper Juhl's avatar Jesper Juhl Committed by Paul Mackerras

[PATCH] Don't check pointer for NULL before passing it to kfree [arch/powerpc/kernel/rtas_flash.c]

Checking a pointer for NULL before passing it to kfree is pointless, kfree
does its own NULL checking of input.
Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 4009d980
...@@ -672,7 +672,6 @@ static void rtas_flash_firmware(int reboot_type) ...@@ -672,7 +672,6 @@ static void rtas_flash_firmware(int reboot_type)
static void remove_flash_pde(struct proc_dir_entry *dp) static void remove_flash_pde(struct proc_dir_entry *dp)
{ {
if (dp) { if (dp) {
if (dp->data != NULL)
kfree(dp->data); kfree(dp->data);
dp->owner = NULL; dp->owner = NULL;
remove_proc_entry(dp->name, dp->parent); remove_proc_entry(dp->name, dp->parent);
......
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