From 8e6c962cd3fbbd4bbde58421a07e63397c07696a Mon Sep 17 00:00:00 2001 From: Adrian Bunk Date: Mon, 30 Jul 2007 15:40:43 +0200 Subject: [ALSA] sound/synth/util_mem.c: remove pointless check The Coverity checker spotted that if anyone would call this function with 'prev == NULL', he would still get an Oops a few lines below. Signed-off-by: Adrian Bunk Signed-off-by: Takashi Iwai Signed-off-by: Jaroslav Kysela --- sound/synth/util_mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sound/synth') diff --git a/sound/synth/util_mem.c b/sound/synth/util_mem.c index 1d9b11f345f..6fc3d2b2519 100644 --- a/sound/synth/util_mem.c +++ b/sound/synth/util_mem.c @@ -116,7 +116,7 @@ __snd_util_memblk_new(struct snd_util_memhdr *hdr, unsigned int units, if (blk == NULL) return NULL; - if (! prev || prev == &hdr->block) + if (prev == &hdr->block) blk->offset = 0; else { struct snd_util_memblk *p = get_memblk(prev); -- cgit v1.2.3