summaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-02-28 01:21:15 +0100
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-03-20 16:39:01 +0100
commit77596058e1c2ad95b566dfdc926611a8dd820ee0 (patch)
tree310ffba3c02d8b2e1046d877bbca670c46a3a236 /drivers/media
parentV4L/DVB (7291): em28xx: correct use of and fix (diff)
downloadlinux-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.c2
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);
}