Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fbeb0dab authored by Shraddha Barke's avatar Shraddha Barke Committed by Greg Kroah-Hartman
Browse files

Staging: wilc1000: linux_wlan: Remove NULL check before kfree



kfree on NULL pointer is a no-op.

The semantic patch used -

// <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>

Signed-off-by: default avatarShraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cccfc39e
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1887,10 +1887,8 @@ static void __exit exit_wilc_driver(void)
	sdio_unregister_driver(&wilc_bus);
#endif

	if (g_linux_wlan != NULL) {
	kfree(g_linux_wlan);
	g_linux_wlan = NULL;
	}
	printk("Module_exit Done.\n");

#if defined(WILC_DEBUGFS)