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

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

Merge "msm: mdss: fix null pointer dereferencing"

parents 69f3e161 663e9950
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1095,7 +1095,7 @@ static int mdss_mdp_get_img(struct msmfb_data *img,
			return ret;
		}
	}
	if (!*start) {
	if (start && !*start) {
		pr_err("start address is zero!\n");
		mdss_mdp_put_img(data, rotator, dir);
		return -ENOMEM;