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

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

Merge "drm/msm/dsi-staging: Add length check before copying to user space"

parents e54c92a9 8e998903
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -121,6 +121,9 @@ static ssize_t debugfs_state_info_read(struct file *file,
			dsi_ctrl->clk_freq.pix_clk_rate,
			dsi_ctrl->clk_freq.esc_clk_rate);

	if (len > count)
		len = count;

	/* TODO: make sure that this does not exceed 4K */
	if (copy_to_user(buff, buf, len)) {
		kfree(buf);
@@ -176,6 +179,8 @@ static ssize_t debugfs_reg_dump_read(struct file *file,
		return rc;
	}

	if (len > count)
		len = count;

	/* TODO: make sure that this does not exceed 4K */
	if (copy_to_user(buff, buf, len)) {