Linux Sound subsystem development
 help / color / mirror / Atom feed
* [PATCH AUTOSEL 6.6 01/19] ASoC: SOF: topology: Use krealloc_array() to replace krealloc()
@ 2025-03-31 14:55 Sasha Levin
  2025-03-31 14:55 ` [PATCH AUTOSEL 6.6 12/19] ALSA: hda: intel: Fix Optimus when GPU has no sound Sasha Levin
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Sasha Levin @ 2025-03-31 14:55 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Zhang Heng, Mark Brown, Sasha Levin, lgirdwood, peter.ujfalusi,
	yung-chuan.liao, ranjani.sridharan, daniel.baluta, perex, tiwai,
	sound-open-firmware, linux-sound

From: Zhang Heng <zhangheng@kylinos.cn>

[ Upstream commit a05143a8f713d9ae6abc41141dac52c66fca8b06 ]

Use krealloc_array() to replace krealloc() with multiplication.
krealloc_array() has multiply overflow check, which will be safer.

Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
Link: https://patch.msgid.link/20250117014343.451503-1-zhangheng@kylinos.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 sound/soc/sof/topology.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/sof/topology.c b/sound/soc/sof/topology.c
index cf1e63daad86b..7afded323150c 100644
--- a/sound/soc/sof/topology.c
+++ b/sound/soc/sof/topology.c
@@ -1267,8 +1267,8 @@ static int sof_widget_parse_tokens(struct snd_soc_component *scomp, struct snd_s
 			struct snd_sof_tuple *new_tuples;
 
 			num_tuples += token_list[object_token_list[i]].count * (num_sets - 1);
-			new_tuples = krealloc(swidget->tuples,
-					      sizeof(*new_tuples) * num_tuples, GFP_KERNEL);
+			new_tuples = krealloc_array(swidget->tuples,
+						    num_tuples, sizeof(*new_tuples), GFP_KERNEL);
 			if (!new_tuples) {
 				ret = -ENOMEM;
 				goto err;
-- 
2.39.5


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-03-31 14:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-31 14:55 [PATCH AUTOSEL 6.6 01/19] ASoC: SOF: topology: Use krealloc_array() to replace krealloc() Sasha Levin
2025-03-31 14:55 ` [PATCH AUTOSEL 6.6 12/19] ALSA: hda: intel: Fix Optimus when GPU has no sound Sasha Levin
2025-03-31 14:55 ` [PATCH AUTOSEL 6.6 13/19] ALSA: hda: intel: Add Lenovo IdeaPad Z570 to probe denylist Sasha Levin
2025-03-31 14:55 ` [PATCH AUTOSEL 6.6 14/19] ASoC: fsl_audmix: register card device depends on 'dais' property Sasha Levin
2025-03-31 14:55 ` [PATCH AUTOSEL 6.6 17/19] ALSA: usb-audio: Fix CME quirk for UF series keyboards Sasha Levin
2025-03-31 14:55 ` [PATCH AUTOSEL 6.6 18/19] ASoC: amd: Add DMI quirk for ACP6X mic support Sasha Levin
2025-03-31 14:56 ` [PATCH AUTOSEL 6.6 19/19] ASoC: amd: yc: update quirk data for new Lenovo model Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox