Commit a75a282d authored by Syam Sidhardhan's avatar Syam Sidhardhan Committed by Martin Schwidefsky

s390/monreader: Remove redundant NULL check before kfree

kfree on NULL pointer is a no-op.
Signed-off-by: default avatarSyam Sidhardhan <s.syam@samsung.com>
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 98ae9b02
...@@ -174,8 +174,7 @@ static void mon_free_mem(struct mon_private *monpriv) ...@@ -174,8 +174,7 @@ static void mon_free_mem(struct mon_private *monpriv)
int i; int i;
for (i = 0; i < MON_MSGLIM; i++) for (i = 0; i < MON_MSGLIM; i++)
if (monpriv->msg_array[i]) kfree(monpriv->msg_array[i]);
kfree(monpriv->msg_array[i]);
kfree(monpriv); kfree(monpriv);
} }
......
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