[PATCH 01/13] don't check vfree argument for NULL in vx_pcm

From: Jesper Juhl
Date: Fri Feb 24 2006 - 15:44:26 EST



It's pointless checking pointers about to be passed to vfree() for NULL.


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

sound/drivers/vx/vx_pcm.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)

--- linux-2.6.16-rc4-mm2-orig/sound/drivers/vx/vx_pcm.c 2006-02-18 02:09:11.000000000 +0100
+++ linux-2.6.16-rc4-mm2/sound/drivers/vx/vx_pcm.c 2006-02-24 19:50:19.000000000 +0100
@@ -98,10 +98,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;
}




-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/