提交 374503c6 编写于 作者: K Kuninori Morimoto 提交者: Mark Brown

ASoC: rsnd: check src mod pointer for rsnd_mod_id()

Without this patch, gcc 4.9.x says

    sound/soc/sh/rcar/cmd.c: In function 'rsnd_cmd_init':
    sound/soc/sh/rcar/cmd.c:85:14: warning: array subscript is below array\
	bounds [-Warray-bounds]
	data = path[rsnd_mod_id(src)] |
Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 2adcea7e
...@@ -82,6 +82,9 @@ static int rsnd_cmd_init(struct rsnd_mod *mod, ...@@ -82,6 +82,9 @@ static int rsnd_cmd_init(struct rsnd_mod *mod,
[9] = 0x2, [9] = 0x2,
}; };
if (unlikely(!src))
return -EIO;
data = path[rsnd_mod_id(src)] | data = path[rsnd_mod_id(src)] |
cmd_case[rsnd_mod_id(src)] << 16; cmd_case[rsnd_mod_id(src)] << 16;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册