aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2011-04-21 18:11:25 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-05-20 09:28:57 -0300
commit08921ac9e9d185d6f472238ea9c79a3a70eb7ea7 (patch)
tree2cdc6ad9191e6b601ef3fc5eedb67ec305cbbee0
parent792bc09a9896dfbdac575ab4cdcd0f4db96d8ca1 (diff)
downloadkernel_samsung_smdk4412-08921ac9e9d185d6f472238ea9c79a3a70eb7ea7.zip
kernel_samsung_smdk4412-08921ac9e9d185d6f472238ea9c79a3a70eb7ea7.tar.gz
kernel_samsung_smdk4412-08921ac9e9d185d6f472238ea9c79a3a70eb7ea7.tar.bz2
[media] Media, DVB, Siano, smsusb: Avoid static analysis report about 'use after free'
In drivers/media/dvb/siano/smsusb.c we have this code: ... kfree(dev); sms_info("device %p destroyed", dev); ... at least one static analysis tool (Coverity Prevent) complains about this as a use-after-free bug. While it's true that we do use the pointer variable after freeing it, the only use is to print the value of the pointer, so there's not actually any problem here. But still, silencing the complaint is trivial by just moving the kfree() call below the sms_info(), so why not just do it?. It doesn't change the workings of the code in any way, but it makes the tool shut up. The patch below also removes a rather pointless blank line. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/siano/smsusb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/dvb/siano/smsusb.c b/drivers/media/dvb/siano/smsusb.c
index 0b8da57..0c8164a 100644
--- a/drivers/media/dvb/siano/smsusb.c
+++ b/drivers/media/dvb/siano/smsusb.c
@@ -297,9 +297,8 @@ static void smsusb_term_device(struct usb_interface *intf)
if (dev->coredev)
smscore_unregister_device(dev->coredev);
- kfree(dev);
-
sms_info("device %p destroyed", dev);
+ kfree(dev);
}
usb_set_intfdata(intf, NULL);