From: Tapasweni Pathak Date: Fri, 24 Oct 2014 16:15:11 +0000 (+0530) Subject: staging: rtl8188eu: os_dep: Remove null check before kfree X-Git-Tag: omap-for-v3.20/drop-legacy-3517~70^2~1020 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=157b8e59fae807936cd98884dc43f90dbb0d5e57;p=pandora-kernel.git staging: rtl8188eu: os_dep: Remove null check before kfree This patch is 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