* [PATCH] fix possible null pointer reference in acpi_pci_irq_disable
@ 2005-03-30 4:49 Kenji Kaneshige
0 siblings, 0 replies; only message in thread
From: Kenji Kaneshige @ 2005-03-30 4:49 UTC (permalink / raw)
To: Len Brown, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Hi,
The following patch fixes possible null pointer reference in
acpi_pci_irq_disable().
Thanks,
Kenji Kaneshige
acpi_pci_irq_disable() should check if dev->bus is NULL before calling
pci_read_config_byte that refers it.
Signed-off-by: Kenji Kaneshige <kaneshige.kenji-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
---
linux-2.6.11-kanesige/drivers/acpi/pci_irq.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff -puN drivers/acpi/pci_irq.c~fix_acpi_pci_irq_disable2 drivers/acpi/pci_irq.c
--- linux-2.6.11/drivers/acpi/pci_irq.c~fix_acpi_pci_irq_disable2 2005-03-30 10:36:51.000000000 +0900
+++ linux-2.6.11-kanesige/drivers/acpi/pci_irq.c 2005-03-30 10:37:23.000000000 +0900
@@ -470,14 +470,14 @@ acpi_pci_irq_disable (
if (!dev)
return_VOID;
+ if (!dev->bus)
+ return_VOID;
+
pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
if (!pin)
return_VOID;
pin--;
- if (!dev->bus)
- return_VOID;
-
/*
* First we check the PCI IRQ routing table (PRT) for an IRQ.
*/
_
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-03-30 4:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-30 4:49 [PATCH] fix possible null pointer reference in acpi_pci_irq_disable Kenji Kaneshige
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox