diff options
author | Ilia Mirkin <imirkin@alum.mit.edu> | 2011-03-13 08:29:00 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-14 22:36:14 +0300 |
commit | dd9b15dc03075993f63a8a69667a3a8989aedfa1 (patch) | |
tree | a49c8b4a5ae885d5a9f3cea7ec83c278b86ee534 /lib/atomic64.c | |
parent | e13a0b5a4b2ca9e318896a1c8c4b45d62477c956 (diff) | |
download | linux-dd9b15dc03075993f63a8a69667a3a8989aedfa1.tar.xz |
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 'lib/atomic64.c')
0 files changed, 0 insertions, 0 deletions