diff options
| author | Doug Ledford <[email protected]> | 2017-08-18 18:12:04 +0000 |
|---|---|---|
| committer | Doug Ledford <[email protected]> | 2017-08-18 18:12:04 +0000 |
| commit | b0e32e20e3c63778d8c20a40d8bec8b18baffecb (patch) | |
| tree | 2e0c3311c53889473b94d49132fe5b7cdee71d51 /drivers/infiniband/core/uverbs_cmd.c | |
| parent | Merge branch 'misc' into k.o/for-next (diff) | |
| parent | IB/uverbs: Fix NULL pointer dereference during device removal (diff) | |
| download | kernel-b0e32e20e3c63778d8c20a40d8bec8b18baffecb.tar.gz kernel-b0e32e20e3c63778d8c20a40d8bec8b18baffecb.zip | |
Merge branch 'k.o/for-4.13-rc' into k.o/for-next
Merging our (hopefully) final -rc pull branch into our for-next branch
because some of our pending patches won't apply cleanly without having
the -rc patches in our tree.
Signed-off-by: Doug Ledford <[email protected]>
Diffstat (limited to 'drivers/infiniband/core/uverbs_cmd.c')
| -rw-r--r-- | drivers/infiniband/core/uverbs_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c index 3ff0b334cdea..39a0f1dc84e4 100644 --- a/drivers/infiniband/core/uverbs_cmd.c +++ b/drivers/infiniband/core/uverbs_cmd.c @@ -1158,7 +1158,7 @@ ssize_t ib_uverbs_resize_cq(struct ib_uverbs_file *file, int out_len) { struct ib_uverbs_resize_cq cmd; - struct ib_uverbs_resize_cq_resp resp; + struct ib_uverbs_resize_cq_resp resp = {}; struct ib_udata udata; struct ib_cq *cq; int ret = -EINVAL; |
