public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 10/13] vfree does its own NULL check, no need to be explicit in oss/msnd.c
@ 2006-02-24 20:49 Jesper Juhl
  0 siblings, 0 replies; only message in thread
From: Jesper Juhl @ 2006-02-24 20:49 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, Andrew Veliath, Jesper Juhl


vfree() does it's own NULL checking, no need for explicit check before
calling it.


Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---

 sound/oss/msnd.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

--- linux-2.6.16-rc4-mm2-orig/sound/oss/msnd.c	2006-01-03 04:21:10.000000000 +0100
+++ linux-2.6.16-rc4-mm2/sound/oss/msnd.c	2006-02-24 21:01:30.000000000 +0100
@@ -95,10 +95,8 @@ void msnd_fifo_init(msnd_fifo *f)
 
 void msnd_fifo_free(msnd_fifo *f)
 {
-	if (f->data) {
-		vfree(f->data);
-		f->data = NULL;
-	}
+	vfree(f->data);
+	f->data = NULL;
 }
 
 int msnd_fifo_alloc(msnd_fifo *f, size_t n)




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-02-24 20:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-24 20:49 [PATCH 10/13] vfree does its own NULL check, no need to be explicit in oss/msnd.c Jesper Juhl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox