1
0
Fork 0

V4L/DVB (5981): Zoran_driver.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>
wifi-calibration
Mariusz Kozlowski 2007-08-06 18:05:27 -03:00 committed by Mauro Carvalho Chehab
parent 4f76b672c4
commit 5e76a1cb2c
1 changed files with 1 additions and 1 deletions

View File

@ -3196,7 +3196,7 @@ zoran_do_ioctl (struct inode *inode,
"%s: VIDIOC_QUERYBUF - index=%d, type=%d\n",
ZR_DEVNAME(zr), buf->index, buf->type);
memset(buf, 0, sizeof(buf));
memset(buf, 0, sizeof(*buf));
buf->type = type;
buf->index = index;