[ALSA] Don't NULL check vfree argument in pdaudiocf_pcm.c
authorJesper Juhl <Jesper.Juhl@Gmail.Com>
Mon, 27 Feb 2006 17:35:46 +0000 (18:35 +0100)
committerJaroslav Kysela <perex@suse.cz>
Wed, 22 Mar 2006 09:31:45 +0000 (10:31 +0100)
Modules: PDAudioCF driver

Don't check pointers passed to vfree for null in pdaudiocf_pcm.c

Signed-off-by: Jesper Juhl <Jesper.Juhl@Gmail.Com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pcmcia/pdaudiocf/pdaudiocf_pcm.c

index 962e6d5..7f2a4de 100644 (file)
@@ -66,10 +66,9 @@ static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t s
 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;
 }