]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ALSA: wavefront: Fix integer overflow in sample size validation
authorJunrui Luo <moonafterrain@outlook.com>
Thu, 6 Nov 2025 02:49:46 +0000 (10:49 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Dec 2025 13:00:17 +0000 (14:00 +0100)
commitbca11de0a277b8baeb7d006f93b543c907b6e782
tree9ef2901149f630052dbac5b57e98c129942830f7
parentc28946b7409b7b68fb0481ec738c8b04578b11c6
ALSA: wavefront: Fix integer overflow in sample size validation

commit 0c4a13ba88594fd4a27292853e736c6b4349823d upstream.

The wavefront_send_sample() function has an integer overflow issue
when validating sample size. The header->size field is u32 but gets
cast to int for comparison with dev->freemem

Fix by using unsigned comparison to avoid integer overflow.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Cc: stable@vger.kernel.org
Signed-off-by: Junrui Luo <moonafterrain@outlook.com>
Link: https://patch.msgid.link/SYBPR01MB7881B47789D1B060CE8BF4C3AFC2A@SYBPR01MB7881.ausprd01.prod.outlook.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/isa/wavefront/wavefront_synth.c