summaryrefslogtreecommitdiff
path: root/drivers/pci/hotplug
diff options
context:
space:
mode:
authorRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>2014-05-18 16:02:57 (GMT)
committerBjorn Helgaas <bhelgaas@google.com>2014-05-28 02:51:14 (GMT)
commitcab9a128dad0fa0c8400a03d9375c781dda43982 (patch)
treed8d22dbf6548a0eca78e90b8f124c2b8d5cf9bf3 /drivers/pci/hotplug
parentf0d54a541751af2c6a16d0c081788cc2aef922a5 (diff)
downloadlinux-cab9a128dad0fa0c8400a03d9375c781dda43982.tar.xz
PCI: cpqphp: Fix possible null pointer dereference
There is otherwise a risk of a null pointer dereference. Found by cppcheck, a static code analysis program. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/hotplug')
-rw-r--r--drivers/pci/hotplug/cpqphp_ctrl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/cpqphp_ctrl.c b/drivers/pci/hotplug/cpqphp_ctrl.c
index 11845b7..f593585 100644
--- a/drivers/pci/hotplug/cpqphp_ctrl.c
+++ b/drivers/pci/hotplug/cpqphp_ctrl.c
@@ -709,7 +709,8 @@ static struct pci_resource *get_max_resource(struct pci_resource **head, u32 siz
temp = temp->next;
}
- temp->next = max->next;
+ if (temp)
+ temp->next = max->next;
}
max->next = NULL;