1
0
Fork 0

V4L/DVB (5983): Arv.c: fix memset in ioctl

Looks like memset() is zeroing wrong nr of bytes.

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
hifive-unleashed-5.1
Mariusz Kozlowski 2007-08-06 18:05:45 -03:00 committed by Mauro Carvalho Chehab
parent 473c653fff
commit 8509a29ec6
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ static int ar_do_ioctl(struct inode *inode, struct file *file,
{
struct video_window *w = arg;
DEBUG(1, "VIDIOCGWIN:\n");
memset(w, 0, sizeof(w));
memset(w, 0, sizeof(*w));
w->width = ar->width;
w->height = ar->height;
return 0;