summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-01-24 11:53:22 +0100
committerMark Brown <broonie@linaro.org>2014-01-24 14:18:03 +0100
commit57e33781ce5aaab86b4db7799f3505988b5226e2 (patch)
tree602bdf0e797248acbd1ccd0d03e794c872a3e277 /sound
parentASoC: Samsung: Fix build error due to missing dependency (diff)
downloadlinux-57e33781ce5aaab86b4db7799f3505988b5226e2.tar.xz
linux-57e33781ce5aaab86b4db7799f3505988b5226e2.zip
ASoC: samsung: Add NULL check in i2s.c
'res' could be NULL from one of the operations above (line 1243). Thus check 'res' for NULL before releasing the region to avoid null pointer dereference. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/samsung/i2s.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c
index 92f64363427d..a9da24f34834 100644
--- a/sound/soc/samsung/i2s.c
+++ b/sound/soc/samsung/i2s.c
@@ -1268,7 +1268,8 @@ static int samsung_i2s_probe(struct platform_device *pdev)
return 0;
err:
- release_mem_region(regs_base, resource_size(res));
+ if (res)
+ release_mem_region(regs_base, resource_size(res));
return ret;
}