|
@@ -178,6 +178,9 @@ struct v4l2_create_buffers32 {
|
|
|
|
|
|
static int __get_v4l2_format32(struct v4l2_format *kp, struct v4l2_format32 __user *up)
|
|
|
{
|
|
|
+ if (get_user(kp->type, &up->type))
|
|
|
+ return -EFAULT;
|
|
|
+
|
|
|
switch (kp->type) {
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE:
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT:
|
|
@@ -204,17 +207,16 @@ static int __get_v4l2_format32(struct v4l2_format *kp, struct v4l2_format32 __us
|
|
|
|
|
|
static int get_v4l2_format32(struct v4l2_format *kp, struct v4l2_format32 __user *up)
|
|
|
{
|
|
|
- if (!access_ok(VERIFY_READ, up, sizeof(struct v4l2_format32)) ||
|
|
|
- get_user(kp->type, &up->type))
|
|
|
- return -EFAULT;
|
|
|
+ if (!access_ok(VERIFY_READ, up, sizeof(struct v4l2_format32)))
|
|
|
+ return -EFAULT;
|
|
|
return __get_v4l2_format32(kp, up);
|
|
|
}
|
|
|
|
|
|
static int get_v4l2_create32(struct v4l2_create_buffers *kp, struct v4l2_create_buffers32 __user *up)
|
|
|
{
|
|
|
if (!access_ok(VERIFY_READ, up, sizeof(struct v4l2_create_buffers32)) ||
|
|
|
- copy_from_user(kp, up, offsetof(struct v4l2_create_buffers32, format.fmt)))
|
|
|
- return -EFAULT;
|
|
|
+ copy_from_user(kp, up, offsetof(struct v4l2_create_buffers32, format)))
|
|
|
+ return -EFAULT;
|
|
|
return __get_v4l2_format32(&kp->format, &up->format);
|
|
|
}
|
|
|
|