Explorar o código

Merge "ASoC: Fix null pointer dereference for prtd pointer"

Linux Build Service Account %!s(int64=6) %!d(string=hai) anos
pai
achega
e95846085a
Modificáronse 1 ficheiros con 7 adicións e 0 borrados
  1. 7 0
      asoc/msm-pcm-q6-v2.c

+ 7 - 0
asoc/msm-pcm-q6-v2.c

@@ -686,6 +686,7 @@ static int msm_pcm_open(struct snd_pcm_substream *substream)
 	if (!prtd->audio_client) {
 		pr_info("%s: Could not allocate memory\n", __func__);
 		kfree(prtd);
+		prtd = NULL;
 		return -ENOMEM;
 	}
 
@@ -1174,6 +1175,12 @@ static int msm_pcm_adsp_stream_cmd_put(struct snd_kcontrol *kcontrol,
 	}
 
 	prtd = substream->runtime->private_data;
+	if (prtd == NULL) {
+		pr_err("%s prtd is null.\n", __func__);
+		ret = -EINVAL;
+		goto done;
+	}
+
 	if (prtd->audio_client == NULL) {
 		pr_err("%s prtd is null.\n", __func__);
 		ret = -EINVAL;