ASoC: soc-pcm: Add NULL check in BE reparenting
[ Upstream commit db8f91d424 ]
Add NULL check in dpcm_be_reparent API, to handle
kernel NULL pointer dereference error.
The issue occurred in fuzzing test.
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Link: https://lore.kernel.org/r/1669098673-29703-1-git-send-email-quic_srivasam@quicinc.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
688a45aff2
commit
f6f45e5383
@@ -1154,6 +1154,8 @@ static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
be_substream = snd_soc_dpcm_get_substream(be, stream);
|
be_substream = snd_soc_dpcm_get_substream(be, stream);
|
||||||
|
if (!be_substream)
|
||||||
|
return;
|
||||||
|
|
||||||
for_each_dpcm_fe(be, stream, dpcm) {
|
for_each_dpcm_fe(be, stream, dpcm) {
|
||||||
if (dpcm->fe == fe)
|
if (dpcm->fe == fe)
|
||||||
|
|||||||
Reference in New Issue
Block a user