From: Chaehyun Lim Date: Wed, 19 Aug 2015 06:59:02 +0000 (+0900) Subject: staging: wilc1000: wilc_msgqueue.c: remove kfree NULL check X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ce118546d4250cfe2b059fb42a4b755944723a50;p=linux-beck.git 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 Signed-off-by: Greg Kroah-Hartman --- 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); } }