diff options
author | Julia Lawall <julia@diku.dk> | 2010-05-27 08:36:45 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-06-01 00:24:22 -0400 |
commit | 4202066c6995200b2755a4501ea90f5d4e163e41 (patch) | |
tree | 4d1dfe0734e9992efae9c42a81f9c5c50cbcbfa0 /drivers/media/video/hdpvr/hdpvr-video.c | |
parent | 5c331fc8c19e181bffab46e9d18e1637cdc47170 (diff) |
V4L/DVB: drivers/media: Eliminate a NULL pointer dereference
In each case, the print involves dereferencing a value that is NULL or is
near NULL.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@r exists@
expression E,E1;
identifier f;
statement S1,S2,S3;
@@
if ((E == NULL && ...) || ...)
{
... when != if (...) S1 else S2
when != E = E1
* E->f
... when any
return ...;
}
else S3
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/hdpvr/hdpvr-video.c')
-rw-r--r-- | drivers/media/video/hdpvr/hdpvr-video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/hdpvr/hdpvr-video.c b/drivers/media/video/hdpvr/hdpvr-video.c index 7cfccfd1b870..c338f3f62e77 100644 --- a/drivers/media/video/hdpvr/hdpvr-video.c +++ b/drivers/media/video/hdpvr/hdpvr-video.c | |||
@@ -366,7 +366,7 @@ static int hdpvr_open(struct file *file) | |||
366 | 366 | ||
367 | dev = (struct hdpvr_device *)video_get_drvdata(video_devdata(file)); | 367 | dev = (struct hdpvr_device *)video_get_drvdata(video_devdata(file)); |
368 | if (!dev) { | 368 | if (!dev) { |
369 | v4l2_err(&dev->v4l2_dev, "open failing with with ENODEV\n"); | 369 | pr_err("open failing with with ENODEV\n"); |
370 | retval = -ENODEV; | 370 | retval = -ENODEV; |
371 | goto err; | 371 | goto err; |
372 | } | 372 | } |