From: Jesper Juhl Date: Tue, 28 Mar 2006 09:56:49 +0000 (-0800) Subject: [PATCH] vfree NULL check fixup for sb_card X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=457d3d432bede99ed04d3bdeb5efb238a3627e8f;p=mv-sheeva.git [PATCH] vfree NULL check fixup for sb_card There's no need to check the vfree() argument for NULL. Signed-off-by: Jesper Juhl Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/sound/oss/sb_card.c b/sound/oss/sb_card.c index d38e88abc8f..4708cbdc314 100644 --- a/sound/oss/sb_card.c +++ b/sound/oss/sb_card.c @@ -348,10 +348,8 @@ static void __exit sb_exit(void) sb_unregister_all(); - if (smw_free) { - vfree(smw_free); - smw_free = NULL; - } + vfree(smw_free); + smw_free = NULL; } module_init(sb_init);