mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 08:56:23 +07:00
ALSA: hda - Check array bounds in get_input_path
This gives us some additional safety. Signed-off-by: David Henningsson <david.henningsson@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
ea46c3c87c
commit
b56fa1ed09
@ -2403,8 +2403,16 @@ static int create_input_ctls(struct hda_codec *codec)
|
||||
static struct nid_path *get_input_path(struct hda_codec *codec, int adc_idx, int imux_idx)
|
||||
{
|
||||
struct hda_gen_spec *spec = codec->spec;
|
||||
if (imux_idx < 0 || imux_idx >= HDA_MAX_NUM_INPUTS) {
|
||||
snd_BUG();
|
||||
return NULL;
|
||||
}
|
||||
if (spec->dyn_adc_switch)
|
||||
adc_idx = spec->dyn_adc_idx[imux_idx];
|
||||
if (adc_idx < 0 || adc_idx >= AUTO_CFG_MAX_OUTS) {
|
||||
snd_BUG();
|
||||
return NULL;
|
||||
}
|
||||
return snd_hda_get_path_from_idx(codec, spec->input_paths[imux_idx][adc_idx]);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user