diff options
author | Anton Vasilyev <vasilyev@ispras.ru> | 2017-08-15 08:19:54 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-15 13:48:55 -0400 |
commit | 7b814a7d4e83b0917efef9dd11a8c095371f987c (patch) | |
tree | 8116e573b8b3967c468bf20a08fdeeba684ae392 | |
parent | d92dd70e9a47cce7d51bda584e7910efd0c4ba20 (diff) |
ASoC: samsung: i2s: Null pointer dereference on samsung_i2s_remove
If (quirks & QUIRK_SEC_DAI == 0) then samsung_i2s_probe() doesn't allocate
sec_dai and pri_dai->sec_dai remains Null, but samsung_i2s_remove()
performs pri_dai->sec_dai dereference in any case.
The patch removes useless reinitialization of sec_dai at
samsung_i2s_remove(), because resources are under devm control.
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Anton Vasilyev <vasilyev@ispras.ru>
Acked-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/samsung/i2s.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c index daf7b892c967..10a4da06c0a1 100644 --- a/sound/soc/samsung/i2s.c +++ b/sound/soc/samsung/i2s.c | |||
@@ -1388,13 +1388,9 @@ err_disable_clk: | |||
1388 | 1388 | ||
1389 | static int samsung_i2s_remove(struct platform_device *pdev) | 1389 | static int samsung_i2s_remove(struct platform_device *pdev) |
1390 | { | 1390 | { |
1391 | struct i2s_dai *pri_dai, *sec_dai; | 1391 | struct i2s_dai *pri_dai; |
1392 | 1392 | ||
1393 | pri_dai = dev_get_drvdata(&pdev->dev); | 1393 | pri_dai = dev_get_drvdata(&pdev->dev); |
1394 | sec_dai = pri_dai->sec_dai; | ||
1395 | |||
1396 | pri_dai->sec_dai = NULL; | ||
1397 | sec_dai->pri_dai = NULL; | ||
1398 | 1394 | ||
1399 | pm_runtime_get_sync(&pdev->dev); | 1395 | pm_runtime_get_sync(&pdev->dev); |
1400 | pm_runtime_disable(&pdev->dev); | 1396 | pm_runtime_disable(&pdev->dev); |