mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[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 <bunk@stusta.de> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
This commit is contained in:
parent
6ddc9d2e82
commit
8e6c962cd3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue