summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000
diff options
context:
space:
mode:
authorChaehyun Lim <chaehyun.lim@gmail.com>2015-08-19 15:59:02 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-09-12 18:24:29 -0700
commitce118546d4250cfe2b059fb42a4b755944723a50 (patch)
tree8d83750d092101584df29ff3ad50be0e085ebd1c /drivers/staging/wilc1000
parentae177a2afc36336dd6a5a21bb8ddfe9d44791a0d (diff)
downloadlinux-ce118546d4250cfe2b059fb42a4b755944723a50.tar.bz2
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')
-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);
}
}