projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17955ab
)
ASoC: SOF: amd: Fix NULL pointer crash in acp_sof_ipc_msg_data function
author
V sujith kumar Reddy
<Vsujithkumar.Reddy@amd.com>
Mon, 8 May 2023 07:05:08 +0000
(12:35 +0530)
committer
Mark Brown
<broonie@kernel.org>
Tue, 9 May 2023 05:43:33 +0000
(14:43 +0900)
Check substream and runtime variables before assigning.
Signed-off-by: V sujith kumar Reddy <Vsujithkumar.Reddy@amd.com
Link:
https://lore.kernel.org/r/20230508070510.6100-1-Vsujithkumar.Reddy@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org
sound/soc/sof/amd/acp-ipc.c
patch
|
blob
|
history
diff --git
a/sound/soc/sof/amd/acp-ipc.c
b/sound/soc/sof/amd/acp-ipc.c
index 4e0c48a361599fdf1f8e74ba06fd043da91566d2..749e856dc6011f021850c6579b6db026efdb1760 100644
(file)
--- a/
sound/soc/sof/amd/acp-ipc.c
+++ b/
sound/soc/sof/amd/acp-ipc.c
@@
-209,7
+209,12
@@
int acp_sof_ipc_msg_data(struct snd_sof_dev *sdev, struct snd_sof_pcm_stream *sp
acp_mailbox_read(sdev, offset, p, sz);
} else {
struct snd_pcm_substream *substream = sps->substream;
- struct acp_dsp_stream *stream = substream->runtime->private_data;
+ struct acp_dsp_stream *stream;
+
+ if (!substream || !substream->runtime)
+ return -ESTRPIPE;
+
+ stream = substream->runtime->private_data;
if (!stream)
return -ESTRPIPE;