OSDN Git Service

ALSA: i2c: ak4xxx-adda: Fix a possible null pointer dereference in build_adc_controls()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Fri, 26 Jul 2019 02:14:42 +0000 (10:14 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 5 Oct 2019 10:27:46 +0000 (12:27 +0200)
commit9916480fc2b674b47968bf3b0f5f490b2805548e
treed20b93fe085c6e5f25d6ec4a87b1718ed108fbcc
parentc5f680b2ca2c6708052db733af90bc5a61a59065
ALSA: i2c: ak4xxx-adda: Fix a possible null pointer dereference in build_adc_controls()

[ Upstream commit 2127c01b7f63b06a21559f56a8c81a3c6535bd1a ]

In build_adc_controls(), there is an if statement on line 773 to check
whether ak->adc_info is NULL:
    if (! ak->adc_info ||
        ! ak->adc_info[mixer_ch].switch_name)

When ak->adc_info is NULL, it is used on line 792:
    knew.name = ak->adc_info[mixer_ch].selector_name;

Thus, a possible null-pointer dereference may occur.

To fix this bug, referring to lines 773 and 774, ak->adc_info
and ak->adc_info[mixer_ch].selector_name are checked before being used.

This bug is found by a static analysis tool STCheck written by us.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
sound/i2c/other/ak4xxx-adda.c