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

Commit 301d07fe authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "asoc : msm: Fix zero size pointer issue"

parents 9ef582e3 2bc34e89
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1337,6 +1337,12 @@ int q6asm_audio_client_buf_alloc_contiguous(unsigned int dir,
		pr_err("%s: buffer already allocated\n", __func__);
		return 0;
	}

	if (bufcnt == 0) {
		pr_err("%s: invalid buffer count\n", __func__);
		return -EINVAL;
	}

	mutex_lock(&ac->cmd_lock);
	buf = kzalloc(((sizeof(struct audio_buffer))*bufcnt),
			GFP_KERNEL);