1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3: Fix Coverity ID 242718 Uninitialized scalar variable

In an error path we are closing user_pol without opening it
This commit is contained in:
Volker Lendecke 2012-05-09 10:56:54 +02:00
parent 74ca9cc957
commit 2a03d9e42c

View File

@ -2703,7 +2703,8 @@ static NTSTATUS cmd_samr_chgpasswd(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
int argc, const char **argv)
{
struct policy_handle connect_pol, domain_pol, user_pol;
struct policy_handle connect_pol, domain_pol;
struct policy_handle user_pol = { 0, };
NTSTATUS status, result;
const char *user, *oldpass, *newpass;
uint32 access_mask = MAXIMUM_ALLOWED_ACCESS;