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

Commit 0b5165ee authored by Gauri Joshi's avatar Gauri Joshi
Browse files

msm: mhi-dev: Check to avoid null pointer dereference



If mhi is not enabled the channels ring remain uninitialized. The host
might reset mhi which will result in device crash due to
null pointer dereference for the channel ring. Check if the pointer is
NULL before dereferencing it to avoid the crash.

Change-Id: I582f9a8a6c9bdca8d5f57e1800b566cca389b830
Signed-off-by: default avatarGauri Joshi <gaurjosh@codeaurora.org>
parent c7f857a0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2359,9 +2359,8 @@ static int mhi_dev_abort(struct mhi_dev *mhi)
	/* Hard stop all the channels */
	for (ch_id = 0; ch_id < mhi->cfg.channels; ch_id++) {
		ring = &mhi->ring[ch_id + mhi->ch_ring_start];
		if (ring->state == RING_STATE_UINT)
		if (!ring || ring->state == RING_STATE_UINT)
			continue;

		ch = &mhi->ch[ch_id];
		mutex_lock(&ch->ch_lock);
		mhi->ch[ch_id].state = MHI_DEV_CH_STOPPED;