Skip to content

Commit db8f91d

Browse files
Srinivasa Rao Mandadapubroonie
authored andcommitted
ASoC: soc-pcm: Add NULL check in BE reparenting
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>
1 parent f5f8ad3 commit db8f91d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

sound/soc/soc-pcm.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1247,6 +1247,8 @@ static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
12471247
return;
12481248

12491249
be_substream = snd_soc_dpcm_get_substream(be, stream);
1250+
if (!be_substream)
1251+
return;
12501252

12511253
for_each_dpcm_fe(be, stream, dpcm) {
12521254
if (dpcm->fe == fe)

0 commit comments

Comments
 (0)