]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: compress: fix an integer overflow check
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 16 Jul 2014 06:37:04 +0000 (09:37 +0300)
committerTakashi Iwai <tiwai@suse.de>
Wed, 16 Jul 2014 13:27:03 +0000 (15:27 +0200)
commit9a2efe28a59dfdb6e7ce68de9a10273ae92324bb
tree568d58db520a580ce8070d55d695ec854d8d9bea
parent44d4a7993070b49e64f7997f4887261e2a7cdff2
ALSA: compress: fix an integer overflow check

I previously added an integer overflow check here but looking at it now,
it's still buggy.

The bug happens in snd_compr_allocate_buffer().  We multiply
".fragments" and ".fragment_size" and that doesn't overflow but then we
save it in an unsigned int so it truncates the high bits away and we
allocate a smaller than expected size.

Fixes: e949ff261abb ('ALSA: compress_core: integer overflow in snd_compr_allocate_buffer()')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/compress_offload.c