diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-01 05:24:20 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-08 01:03:39 -0500 |
commit | 5b1a43d7df65689b4c3b5a1c5c8158f1d4f74fbd (patch) | |
tree | 651e2320ff4633507243cf2e353d9ba6b8017cc1 /include/linux/videodev2.h | |
parent | de125bf395df34892862d76580ce3a153e80f151 (diff) | |
download | linux-next-5b1a43d7df65689b4c3b5a1c5c8158f1d4f74fbd.tar.gz |
[PATCH] drivers/media/video __user annotations and fixes
* compat_alloc_user_space() returns __user pointer
* copying between two userland areas is copy_in_user(), not copy_from_user()
* dereferencing userland pointers is bad
* so's get_user() from local variables
... plus usual __user annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/videodev2.h')
-rw-r--r-- | include/linux/videodev2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index b23be44cbea8..5208b12d5550 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h @@ -549,7 +549,7 @@ struct v4l2_framebuffer struct v4l2_clip { struct v4l2_rect c; - struct v4l2_clip *next; + struct v4l2_clip __user *next; }; struct v4l2_window |