aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/amso1100/c2_rnic.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-10-10 14:26:02 -0700
committerRoland Dreier <rolandd@cisco.com>2006-10-16 10:06:07 -0700
commitfb7711e71ea7cd0d3e77e969df59162388c8a1f9 (patch)
treec39c373775f5cbae7f3a51e6123afc58f3345aac /drivers/infiniband/hw/amso1100/c2_rnic.c
parentRDMA/amso1100: pci_module_init() conversion (diff)
downloadlinux-dev-fb7711e71ea7cd0d3e77e969df59162388c8a1f9.tar.xz
linux-dev-fb7711e71ea7cd0d3e77e969df59162388c8a1f9.zip
RDMA/amso1100: Fix a NULL dereference in error path
This patch fixes a NULL dereference spotted by the Coverity checker. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Acked-by: Steve Wise <swise@opengridcomputing.com> Acked-by: Tom Tucker <tom@opengridcomputing.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/amso1100/c2_rnic.c')
-rw-r--r--drivers/infiniband/hw/amso1100/c2_rnic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/amso1100/c2_rnic.c b/drivers/infiniband/hw/amso1100/c2_rnic.c
index e37c5688c214..30409e179606 100644
--- a/drivers/infiniband/hw/amso1100/c2_rnic.c
+++ b/drivers/infiniband/hw/amso1100/c2_rnic.c
@@ -150,8 +150,8 @@ static int c2_rnic_query(struct c2_dev *c2dev, struct ib_device_attr *props)
(struct c2wr_rnic_query_rep *) (unsigned long) (vq_req->reply_msg);
if (!reply)
err = -ENOMEM;
-
- err = c2_errno(reply);
+ else
+ err = c2_errno(reply);
if (err)
goto bail2;