aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOldrich Jedlicka <oldium.pro@seznam.cz>2008-11-13 22:03:00 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 17:53:36 -0200
commitbdf398eb09e3f2e1fd1acb50960ce93fe380e847 (patch)
tree748a06063ae8489d9d10843f166568893e5fd1ad
parent0537156f6ca44193f70e91b636a25724aaa1e53b (diff)
V4L/DVB (9667): Fixed typo in sizeof() causing NULL pointer OOPS
Signed-off-by: Oldřich Jedlička <oldium.pro@seznam.cz> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/video/saa7134/saa7134-cards.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/saa7134/saa7134-cards.c b/drivers/media/video/saa7134/saa7134-cards.c
index ddc5402c5fb..863522899e8 100644
--- a/drivers/media/video/saa7134/saa7134-cards.c
+++ b/drivers/media/video/saa7134/saa7134-cards.c
@@ -6048,7 +6048,7 @@ static void saa7134_tuner_setup(struct saa7134_dev *dev)
struct v4l2_priv_tun_config xc2028_cfg;
struct xc2028_ctrl ctl;
- memset(&xc2028_cfg, 0, sizeof(ctl));
+ memset(&xc2028_cfg, 0, sizeof(xc2028_cfg));
memset(&ctl, 0, sizeof(ctl));
ctl.fname = XC2028_DEFAULT_FIRMWARE;