projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7744b5f
)
ARCNET: Add missing error check for devm_kzalloc
author
Kiran Padwal
<kiran.padwal@smartplayin.com>
Thu, 5 Feb 2015 11:31:37 +0000
(17:01 +0530)
committer
David S. Miller
<davem@davemloft.net>
Thu, 5 Feb 2015 23:53:34 +0000
(15:53 -0800)
This patch add a missing check on the return value of devm_kzalloc,
which would cause a NULL pointer dereference in a OOM situation.
Signed-off-by: Kiran Padwal <kiran.padwal@smartplayin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/arcnet/com20020-pci.c
patch
|
blob
|
history
diff --git
a/drivers/net/arcnet/com20020-pci.c
b/drivers/net/arcnet/com20020-pci.c
index
6c99ff0
..
945f532
100644
(file)
--- a/
drivers/net/arcnet/com20020-pci.c
+++ b/
drivers/net/arcnet/com20020-pci.c
@@
-78,6
+78,9
@@
static int com20020pci_probe(struct pci_dev *pdev, const struct pci_device_id *i
priv = devm_kzalloc(&pdev->dev, sizeof(struct com20020_priv),
GFP_KERNEL);
+ if (!priv)
+ return -ENOMEM;
+
ci = (struct com20020_pci_card_info *)id->driver_data;
priv->ci = ci;