Commit a81200b5 authored by Sumit Pundir's avatar Sumit Pundir Committed by Greg Kroah-Hartman
Browse files

staging: lustre: lnet: remove null check before kfree



Since kfree(NULL) is safe there is no need to place a check before it.
Issue reported by checkpatch.pl

Signed-off-by: default avatarSumit Pundir <pundirsumit11@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 142ad642
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2146,7 +2146,6 @@ lnet_create_reply_msg(struct lnet_ni *ni, struct lnet_msg *getmsg)
	the_lnet.ln_counters[cpt]->drop_length += getmd->md_length;
	lnet_net_unlock(cpt);

	if (msg)
	kfree(msg);

	return NULL;