ASoC: dapm: Return -ENOMEM in snd_soc_dapm_new_dai_widgets()
... instead of NULL dereferences. Spotted by coverity CID 402004. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
ff18620c21
commit
298402a385
@ -3495,6 +3495,7 @@ int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
|
|||||||
if (!w) {
|
if (!w) {
|
||||||
dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
|
dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
|
||||||
dai->driver->playback.stream_name);
|
dai->driver->playback.stream_name);
|
||||||
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
w->priv = dai;
|
w->priv = dai;
|
||||||
@ -3513,6 +3514,7 @@ int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
|
|||||||
if (!w) {
|
if (!w) {
|
||||||
dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
|
dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
|
||||||
dai->driver->capture.stream_name);
|
dai->driver->capture.stream_name);
|
||||||
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
w->priv = dai;
|
w->priv = dai;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user