diff options
author | Volker Lendecke <vl@samba.org> | 2013-06-22 13:06:34 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-07-22 15:07:37 -0700 |
commit | a1e0accc5f4f33ce296bad79a088499cf082d9b5 (patch) | |
tree | bdcf05fdedff8f65a117ca8c3748c39aa9a62b34 | |
parent | a6a0d238b368fd15ceb0237c2f9ff13c58b18fad (diff) | |
download | samba-a1e0accc5f4f33ce296bad79a088499cf082d9b5.tar.gz samba-a1e0accc5f4f33ce296bad79a088499cf082d9b5.tar.bz2 samba-a1e0accc5f4f33ce296bad79a088499cf082d9b5.zip |
smbd: Fix CID 1035538 Uninitialized pointer read
rpc_pipe_open_interface just returns okay if the pipe in question is
already open. For this, it needs to read the value.
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/smbd/lanman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/lanman.c b/source3/smbd/lanman.c index b5598a4382..a21e715679 100644 --- a/source3/smbd/lanman.c +++ b/source3/smbd/lanman.c @@ -2715,7 +2715,7 @@ static bool api_RNetUserEnum(struct smbd_server_connection *sconn, int i, resume_context, cli_buf_size; uint32_t resume_handle; - struct rpc_pipe_client *samr_pipe; + struct rpc_pipe_client *samr_pipe = NULL; struct policy_handle samr_handle, domain_handle; NTSTATUS status, result; |