Skip to content

Commit

Permalink
staging: pohmelfs: Remove NULL check before kfree
Browse files Browse the repository at this point in the history
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Ilia Mirkin authored and Greg Kroah-Hartman committed Mar 14, 2011
1 parent 43c04d4 commit 1491017
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/staging/pohmelfs/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -601,11 +601,9 @@ void pohmelfs_config_exit(void)

list_del(&g->group_entry);

if (g->hash_string)
kfree(g->hash_string);
kfree(g->hash_string);

if (g->cipher_string)
kfree(g->cipher_string);
kfree(g->cipher_string);

kfree(g);
}
Expand Down

0 comments on commit 1491017

Please sign in to comment.