diff options
| -rw-r--r-- | sound/isa/gus/gus_mem.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/isa/gus/gus_mem.c b/sound/isa/gus/gus_mem.c index 661205c4dcea..af888a022fc0 100644 --- a/sound/isa/gus/gus_mem.c +++ b/sound/isa/gus/gus_mem.c | |||
| @@ -127,7 +127,8 @@ static struct snd_gf1_mem_block *snd_gf1_mem_share(struct snd_gf1_mem * alloc, | |||
| 127 | !share_id[2] && !share_id[3]) | 127 | !share_id[2] && !share_id[3]) |
| 128 | return NULL; | 128 | return NULL; |
| 129 | for (block = alloc->first; block; block = block->next) | 129 | for (block = alloc->first; block; block = block->next) |
| 130 | if (!memcmp(share_id, block->share_id, sizeof(share_id))) | 130 | if (!memcmp(share_id, block->share_id, |
| 131 | sizeof(block->share_id))) | ||
| 131 | return block; | 132 | return block; |
| 132 | return NULL; | 133 | return NULL; |
| 133 | } | 134 | } |
