Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2757e5d authored by Vignesh Kulothungan's avatar Vignesh Kulothungan
Browse files

ASoC: add null check before use



Add null check to validate pointer before use.

CRs-Fixed: 2673395
Change-Id: Ief4785c8f6c9700204635df4d2efd35290d2690d
Signed-off-by: default avatarVignesh Kulothungan <vigneshk@codeaurora.org>
parent 93afa626
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -6840,7 +6840,12 @@ static int msm_populate_dai_link_component_of_node(
				codecs_comp = devm_kzalloc(cdev,
				    sizeof(struct snd_soc_dai_link_component)
				    * codecs_enabled, GFP_KERNEL);

				if (!codecs_comp) {
					dev_err(cdev, "%s: %s dailink codec component alloc failed\n",
						__func__, dai_link[i].name);
					ret = -ENOMEM;
					goto err;
				}
				index = 0;
				for (j = 0; j < dai_link[i].num_codecs; j++) {
					if(dai_link[i].codecs[j].of_node) {