summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/wilc_msgqueue.c
diff options
context:
space:
mode:
authorChaehyun Lim2015-08-19 08:59:02 +0200
committerGreg Kroah-Hartman2015-09-13 03:24:29 +0200
commitce118546d4250cfe2b059fb42a4b755944723a50 (patch)
tree8d83750d092101584df29ff3ad50be0e085ebd1c /drivers/staging/wilc1000/wilc_msgqueue.c
parentstaging: wilc1000: wilc_msgqueue.c: use ! operator instead of NULL comparison (diff)
downloadkernel-qcow2-linux-ce118546d4250cfe2b059fb42a4b755944723a50.tar.gz
kernel-qcow2-linux-ce118546d4250cfe2b059fb42a4b755944723a50.tar.xz
kernel-qcow2-linux-ce118546d4250cfe2b059fb42a4b755944723a50.zip
staging: wilc1000: wilc_msgqueue.c: remove kfree NULL check
This patch removes kfree NULL check. WARNING: kfree(NULL) is safe and this check is probably not required. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/wilc_msgqueue.c')
-rw-r--r--drivers/staging/wilc1000/wilc_msgqueue.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/wilc_msgqueue.c b/drivers/staging/wilc1000/wilc_msgqueue.c
index 0770ff6d5d7f..d97dd705da5a 100644
--- a/drivers/staging/wilc1000/wilc_msgqueue.c
+++ b/drivers/staging/wilc1000/wilc_msgqueue.c
@@ -96,9 +96,7 @@ WILC_ErrNo WILC_MsgQueueSend(WILC_MsgQueueHandle *pHandle,
{
/* error occured, free any allocations */
if (pstrMessage) {
- if (pstrMessage->pvBuffer)
- kfree(pstrMessage->pvBuffer);
-
+ kfree(pstrMessage->pvBuffer);
kfree(pstrMessage);
}
}