* [patch 1/1] OSS msnd_pinnacle missing return check for request_region()
@ 2006-03-17 10:27 Laurent Wandrebeck
0 siblings, 0 replies; only message in thread
From: Laurent Wandrebeck @ 2006-03-17 10:27 UTC (permalink / raw)
To: linux-kernel, akpm
Hi,
in sound/oss/msnd_pinnacle.c, request_region() is called without checking the return
value. Here is a simple patch to fix it.
Patch against 2.6.16-rc6-git8.
Please CC me on replies.
Regards.
PS: trying with a MUA this time, since the webmail I used for previous patch
( [patch 1/1] OSS ali5455 missing return check for request_region() ) wrapped lines :(
Signed-off-by: Laurent Wandrebeck <l.wandrebeck@free.fr>
--- linux-2.6.16-rc6/sound/oss/msnd_pinnacle.c.ori 2006-03-17 10:45:46.000000000 +0100
+++ linux-2.6.16-rc6/sound/oss/msnd_pinnacle.c 2006-03-17 11:05:42.000000000 +0100
@@ -1397,7 +1397,13 @@ static int __init attach_multisound(void
printk(KERN_ERR LOGNAME ": Couldn't grab IRQ %d\n", dev.irq);
return err;
}
- request_region(dev.io, dev.numio, dev.name);
+
+ if (!request_region(dev.io, dev.numio, dev.name)) {
+ printk(KERN_ERR LOGNAME ": Unable to reserve region %d\n",
+ dev->io);
+ free_irq(dev.irq,&dev);
+ return -EBUSY;
+ }
if ((err = dsp_full_reset()) < 0) {
release_region(dev.io, dev.numio);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-03-17 10:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-17 10:27 [patch 1/1] OSS msnd_pinnacle missing return check for request_region() Laurent Wandrebeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®