OSDN Git Service

ALSA: hda - silence uninitialized variable warning in activate_amp_in()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 13 Oct 2017 10:57:10 +0000 (13:57 +0300)
committerTakashi Iwai <tiwai@suse.de>
Fri, 13 Oct 2017 13:14:44 +0000 (15:14 +0200)
If snd_hda_get_conn_list() fails then "conn" isn't initialized.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_generic.c

index 28e265a..5cc6509 100644 (file)
@@ -795,6 +795,8 @@ static void activate_amp_in(struct hda_codec *codec, struct nid_path *path,
        hda_nid_t nid = path->path[i];
 
        nums = snd_hda_get_conn_list(codec, nid, &conn);
+       if (nums < 0)
+               return;
        type = get_wcaps_type(get_wcaps(codec, nid));
        if (type == AC_WID_PIN ||
            (type == AC_WID_AUD_IN && codec->single_adc_amp)) {