From: Tapasweni Pathak Date: Tue, 21 Oct 2014 04:20:03 +0000 (+0530) Subject: staging: unisys: visorutil: Remove null check before kfree X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~1040 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d02c02253457a1facf077d8d67aa350ac317878;p=pandora-kernel.git staging: unisys: visorutil: Remove null check before kfree This patch was generated by the following semantic patch: // @@ expression E; @@ - if (E != NULL) { kfree(E); } + kfree(E); @@ expression E; @@ - if (E != NULL) { kfree(E); E = NULL; } + kfree(E); + E = NULL; // Signed-off-by: Tapasweni Pathak Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed