IB/vmw_pvrdma: Don't leak info from alloc_ucontext
Clear out the user response struct correctly.
Fixes: 29c8d9eba5
("IB: Add vmw_pvrdma driver")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Adit Ranadive <aditr@vmware.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
b1a27eac7f
commit
7d211c81e9
|
@ -306,7 +306,7 @@ struct ib_ucontext *pvrdma_alloc_ucontext(struct ib_device *ibdev,
|
||||||
union pvrdma_cmd_resp rsp;
|
union pvrdma_cmd_resp rsp;
|
||||||
struct pvrdma_cmd_create_uc *cmd = &req.create_uc;
|
struct pvrdma_cmd_create_uc *cmd = &req.create_uc;
|
||||||
struct pvrdma_cmd_create_uc_resp *resp = &rsp.create_uc_resp;
|
struct pvrdma_cmd_create_uc_resp *resp = &rsp.create_uc_resp;
|
||||||
struct pvrdma_alloc_ucontext_resp uresp;
|
struct pvrdma_alloc_ucontext_resp uresp = {0};
|
||||||
int ret;
|
int ret;
|
||||||
void *ptr;
|
void *ptr;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue