diff options
author | Jeffy Chen <jeffy.chen@rock-chips.com> | 2017-08-24 07:40:17 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-25 16:49:44 +0300 |
commit | 6a6dafda937cfcdbbfe46a3e093de8bb929ba52d (patch) | |
tree | 20c95617a086d61120c0493e2199a21993f3ea42 /sound/soc/soc-core.c | |
parent | 4958471b0d2110a34df0b45803e6f24ed89b857b (diff) | |
download | linux-6a6dafda937cfcdbbfe46a3e093de8bb929ba52d.tar.xz |
ASoC: Add a sanity check before using dai driver name
The dai driver's name is allowed to be NULL. So add a sanity check for
that.
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
Reported-by: Donglin Peng <dolinux.peng@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 6fab0ff213ef..74c17068bb11 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -1029,7 +1029,8 @@ struct snd_soc_dai *snd_soc_find_dai( continue; list_for_each_entry(dai, &component->dai_list, list) { if (dlc->dai_name && strcmp(dai->name, dlc->dai_name) - && strcmp(dai->driver->name, dlc->dai_name)) + && (!dai->driver->name + || strcmp(dai->driver->name, dlc->dai_name))) continue; return dai; |