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

Commit e902a358 authored by Dan Carpenter's avatar Dan Carpenter Committed by Dave Airlie
Browse files

drm/drm_crtc: return -EFAULT on copy_to_user errors



copy_from_user() returns the number of bytes left to be copied but we
want to return a negative error code here.  This is in the ioctl handler
so the error code get returned to userspace.

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent fc2362af
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1840,9 +1840,11 @@ int drm_mode_dirtyfb_ioctl(struct drm_device *dev,

		ret = copy_from_user(clips, clips_ptr,
				     num_clips * sizeof(*clips));
		if (ret)
		if (ret) {
			ret = -EFAULT;
			goto out_err2;
		}
	}

	if (fb->funcs->dirty) {
		ret = fb->funcs->dirty(fb, flags, r->color, clips, num_clips);