public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6.23 regression fix] usbvision: don't return an uninitialized value
@ 2007-07-23  8:02 Adrian Bunk
  2007-07-23 10:02 ` [v4l-dvb-maintainer] " Trent Piepho
  0 siblings, 1 reply; 2+ messages in thread
From: Adrian Bunk @ 2007-07-23  8:02 UTC (permalink / raw)
  To: Thierry MERLE, Dwaine P. Garden, Mauro Carvalho Chehab
  Cc: v4l-dvb-maintainer, linux-kernel, Michal Piotrowski

Commit c5f48367fe54c46805774eeea8e828de54a5ad7b introduced this return 
of an uninitialized variable.

Spotted by the Coverity checker.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

 drivers/media/video/usbvision/usbvision-video.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

--- linux-2.6.22-rc6-mm1/drivers/media/video/usbvision/usbvision-video.c.old	2007-07-23 01:45:01.000000000 +0200
+++ linux-2.6.22-rc6-mm1/drivers/media/video/usbvision/usbvision-video.c	2007-07-23 01:46:06.000000000 +0200
@@ -525,18 +525,17 @@ static int vidioc_s_register (struct fil
 {
 	struct video_device *dev = video_devdata(file);
 	struct usb_usbvision *usbvision =
 		(struct usb_usbvision *) video_get_drvdata(dev);
-	int errCode;
 
 	if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
 		return -EINVAL;
 	/* NT100x has a 8-bit register space */
 	reg->val = (u8)usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
 	if (reg->val < 0) {
 		err("%s: VIDIOC_DBG_S_REGISTER failed: error %d",
-		    __FUNCTION__, errCode);
-		return errCode;
+		    __FUNCTION__, reg->val);
+		return reg->val;
 	}
 	return 0;
 }
 #endif


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [v4l-dvb-maintainer] [2.6.23 regression fix] usbvision: don't return an uninitialized value
  2007-07-23  8:02 [2.6.23 regression fix] usbvision: don't return an uninitialized value Adrian Bunk
@ 2007-07-23 10:02 ` Trent Piepho
  0 siblings, 0 replies; 2+ messages in thread
From: Trent Piepho @ 2007-07-23 10:02 UTC (permalink / raw)
  To: Adrian Bunk
  Cc: Thierry MERLE, Dwaine P. Garden, Mauro Carvalho Chehab,
	v4l-dvb maintainer list, Linux Kernel Mailing list,
	Michal Piotrowski

On Mon, 23 Jul 2007, Adrian Bunk wrote:
> Commit c5f48367fe54c46805774eeea8e828de54a5ad7b introduced this return
> of an uninitialized variable.
>
> Spotted by the Coverity checker.

It spotted that, but it seems it missed the bigger bug, reg->val is
unsigned.  Since reg->val can't be less than 0, it will never actually
return the unitialized variable.

This patch should fix it correctly.  The vidioc_g_register function was
broken too, it wasn't actually setting reg->val to the register value it
read.

--------------------------------------------------------------------
usbvision: fix bugs in vidioc_[sg]_register functions

From: Trent Piepho <xyzzy@speakeasy.org>

s_register was assigning the return code to (unsigned)reg->val, rather than
errCode, which it what it would return.  Except reg->val can't be < 0, so it
would never actually return an error.

g_register never actually put the value it read into reg->val.

Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>

diff -r 8e72fe5675b3 -r d5c4fffbbad3 linux/drivers/media/video/usbvision/usbvision-video.c
--- a/linux/drivers/media/video/usbvision/usbvision-video.c	Sat Jul 21 17:26:40 2007 -0700
+++ b/linux/drivers/media/video/usbvision/usbvision-video.c	Mon Jul 23 02:58:31 2007 -0700
@@ -550,6 +550,7 @@ static int vidioc_g_register (struct fil
 		    __FUNCTION__, errCode);
 		return errCode;
 	}
+	reg->val = errCode;
 	return 0;
 }

@@ -564,8 +565,8 @@ static int vidioc_s_register (struct fil
 	if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
 		return -EINVAL;
 	/* NT100x has a 8-bit register space */
-	reg->val = (u8)usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
-	if (reg->val < 0) {
+	errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
+	if (errCode < 0) {
 		err("%s: VIDIOC_DBG_S_REGISTER failed: error %d",
 		    __FUNCTION__, errCode);
 		return errCode;

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-07-23 10:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-23  8:02 [2.6.23 regression fix] usbvision: don't return an uninitialized value Adrian Bunk
2007-07-23 10:02 ` [v4l-dvb-maintainer] " Trent Piepho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox