diff options
author | Volker Lendecke <vl@samba.org> | 2011-09-13 10:46:32 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-09-13 11:00:15 +0200 |
commit | 67605bfc55cc106de99d318f0c1d484261926b3b (patch) | |
tree | 904b9d460714505323345f327fa27495aa863e17 | |
parent | ad85bd8003fdbefb5f9186408721c766b5e813eb (diff) | |
download | samba-67605bfc55cc106de99d318f0c1d484261926b3b.tar.gz |
s3: Fix Coverity ID 2614 -- UNINIT
-rw-r--r-- | source3/rpc_client/util_lsarpc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/rpc_client/util_lsarpc.c b/source3/rpc_client/util_lsarpc.c index e607a0cffb0..df52f53471e 100644 --- a/source3/rpc_client/util_lsarpc.c +++ b/source3/rpc_client/util_lsarpc.c @@ -222,6 +222,7 @@ static NTSTATUS trust_domain_info_buffer_2_ai_array(TALLOC_CTX *mem_ctx, b[i].data.size, &ai->array[i].AuthInfo.clear.password, &size)) { + status = NT_STATUS_INVALID_PARAMETER; goto fail; } ai->array[i].AuthInfo.clear.size = size; |