Commit 7010157b authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman

staging: ozwpan: Remove redundant null check before kfree in ozhcd.c

kfree on NULL pointer is a no-op.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarRupesh Gujare <rgujare@ozmodevices.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ba34efba
...@@ -278,8 +278,7 @@ static void oz_free_urb_link(struct oz_urb_link *urbl) ...@@ -278,8 +278,7 @@ static void oz_free_urb_link(struct oz_urb_link *urbl)
g_link_pool_size++; g_link_pool_size++;
} }
spin_unlock_irqrestore(&g_link_lock, irq_state); spin_unlock_irqrestore(&g_link_lock, irq_state);
if (urbl) kfree(urbl);
kfree(urbl);
} }
} }
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
......
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