summaryrefslogtreecommitdiffstats
path: root/REPORTING-BUGS
diff options
context:
space:
mode:
authorTapasweni Pathak <tapaswenipathak@gmail.com>2014-10-30 21:08:09 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-10-30 13:12:05 -0700
commita055b3cbb72d2487938d3452c79e2a338088fbc1 (patch)
tree1050228064897fc249a5c018a730163feaf39158 /REPORTING-BUGS
parent7ede7af3fd5f92966d328586f7f42b378fa17d83 (diff)
staging: rtl8188eu: core: Remove null check before kfree
kfree on NULL pointer is a no-op. This patch uses the following semantic patch to find such an instance where NULL check is present before kfree. // <smpl> @@ expression E; @@ - if (E != NULL) { kfree(E); } + kfree(E); @@ expression E; @@ - if (E != NULL) { kfree(E); E = NULL; } + kfree(E); + E = NULL; // </smpl>smpl> Build tested it. Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'REPORTING-BUGS')
0 files changed, 0 insertions, 0 deletions