diff options
author | Ilia Mirkin <imirkin@alum.mit.edu> | 2011-03-13 00:29:00 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-14 12:36:14 -0700 |
commit | dd9b15dc03075993f63a8a69667a3a8989aedfa1 (patch) | |
tree | a49c8b4a5ae885d5a9f3cea7ec83c278b86ee534 /security/selinux | |
parent | e13a0b5a4b2ca9e318896a1c8c4b45d62477c956 (diff) |
staging: hv: Remove NULL check before kfree
This patch was generated by the following semantic patch:
// <smpl>
@@ expression E; @@
- if (E != NULL) { kfree(E); }
+ kfree(E);
@@ expression E; @@
- if (E != NULL) { kfree(E); E = NULL; }
+ kfree(E);
+ E = NULL;
// </smpl>
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: K. Y. Srinivasan <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Mike Sterling <mike.sterling@microsoft.com>
Cc: Abhishek Kane <v-abkane@microsoft.com>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'security/selinux')
0 files changed, 0 insertions, 0 deletions