diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-28 01:21:15 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-03-20 16:39:01 +0100 |
commit | 77596058e1c2ad95b566dfdc926611a8dd820ee0 (patch) | |
tree | 310ffba3c02d8b2e1046d877bbca670c46a3a236 /drivers/media | |
parent | V4L/DVB (7291): em28xx: correct use of and fix (diff) | |
download | linux-77596058e1c2ad95b566dfdc926611a8dd820ee0.tar.xz linux-77596058e1c2ad95b566dfdc926611a8dd820ee0.zip |
V4L/DVB (7328): usb/opera1.c: fix a memory leak
This patch fixes a memory leak in the "testval == 0x67" case spotted by
the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/dvb/dvb-usb/opera1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/opera1.c b/drivers/media/dvb/dvb-usb/opera1.c index 21935bf7059e..302cc67407c3 100644 --- a/drivers/media/dvb/dvb-usb/opera1.c +++ b/drivers/media/dvb/dvb-usb/opera1.c @@ -478,9 +478,9 @@ static int opera1_xilinx_load_firmware(struct usb_device *dev, err("could not restart the USB controller CPU."); ret = -EINVAL; } - kfree(p); } } + kfree(p); if (fw) { release_firmware(fw); } |