summaryrefslogtreecommitdiff
path: root/drivers/media/dvb/dvb-usb/opera1.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-02-27 21:21:15 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-03-20 12:39:01 -0300
commit77596058e1c2ad95b566dfdc926611a8dd820ee0 (patch)
tree310ffba3c02d8b2e1046d877bbca670c46a3a236 /drivers/media/dvb/dvb-usb/opera1.c
parent46cb57e62824a8d6f9e12bedc98c41738a1478ce (diff)
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/dvb/dvb-usb/opera1.c')
-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);
}