mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 20:21:57 +00:00
ALSA: hda_hwdep: Fix possible buffer overflow
If a line in the firmware file is larger than the given buffer size (and so the firmware file size), size is set to a value larger than the actual buffer size. This results in an overflow in the buffer passed. Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
228cf79376
commit
359f90982c
@ -756,8 +756,6 @@ static int get_line_from_fw(char *buf, int size, struct firmware *fw)
|
||||
}
|
||||
if (!fw->size)
|
||||
return 0;
|
||||
if (size < fw->size)
|
||||
size = fw->size;
|
||||
|
||||
for (len = 0; len < fw->size; len++) {
|
||||
if (!*p)
|
||||
|
Loading…
Reference in New Issue
Block a user