Commit 8e6c962c authored by Adrian Bunk's avatar Adrian Bunk Committed by Jaroslav Kysela

[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: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent 6ddc9d2e
...@@ -116,7 +116,7 @@ __snd_util_memblk_new(struct snd_util_memhdr *hdr, unsigned int units, ...@@ -116,7 +116,7 @@ __snd_util_memblk_new(struct snd_util_memhdr *hdr, unsigned int units,
if (blk == NULL) if (blk == NULL)
return NULL; return NULL;
if (! prev || prev == &hdr->block) if (prev == &hdr->block)
blk->offset = 0; blk->offset = 0;
else { else {
struct snd_util_memblk *p = get_memblk(prev); struct snd_util_memblk *p = get_memblk(prev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment