* [PATCH 02/13] don't check vfree arg for NULL in usbaudio
@ 2006-02-24 20:47 Jesper Juhl
0 siblings, 0 replies; only message in thread
From: Jesper Juhl @ 2006-02-24 20:47 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel, Takashi Iwai, Jesper Juhl
There's no need to check pointers passed to vfree() for NULL.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---
sound/usb/usbaudio.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
--- linux-2.6.16-rc4-mm2-orig/sound/usb/usbaudio.c 2006-02-24 19:25:50.000000000 +0100
+++ linux-2.6.16-rc4-mm2/sound/usb/usbaudio.c 2006-02-24 19:53:49.000000000 +0100
@@ -720,10 +720,9 @@ static int snd_pcm_alloc_vmalloc_buffer(
static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs)
{
struct snd_pcm_runtime *runtime = subs->runtime;
- if (runtime->dma_area) {
- vfree(runtime->dma_area);
- runtime->dma_area = NULL;
- }
+
+ vfree(runtime->dma_area);
+ runtime->dma_area = NULL;
return 0;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-02-24 20:46 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:47 [PATCH 02/13] don't check vfree arg for NULL in usbaudio Jesper Juhl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome