From: Takashi Iwai Date: Fri, 2 Dec 2011 14:29:12 +0000 (+0100) Subject: ALSA: hda/realtek - Fix Oops in alc_mux_select() X-Git-Tag: v3.1.6~52 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=72a8cf91f33281144ffbd9d2b756565686f7159d;p=karo-tx-linux.git ALSA: hda/realtek - Fix Oops in alc_mux_select() commit cce4aa378a049f4275416ee6302dd24f37b289df upstream. When no imux is available (e.g. a single capture source), alc_auto_init_input_src() may trigger an Oops due to the access to -1. Add a proper zero-check to avoid it. Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index c687e14733d7..20d920743e7c 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -280,6 +280,8 @@ static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx, imux = &spec->input_mux[mux_idx]; if (!imux->num_items && mux_idx > 0) imux = &spec->input_mux[0]; + if (!imux->num_items) + return 0; if (idx >= imux->num_items) idx = imux->num_items - 1;