summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-09-13 10:47:15 +0200
committerVolker Lendecke <vlendec@samba.org>2011-09-13 12:39:10 +0200
commite63d0c5f0c5546707b10217f709f6c7a5d5ae9f9 (patch)
tree70d089d4a5f5c57b389cc51068657dac6fef376b /source3
parent67605bfc55cc106de99d318f0c1d484261926b3b (diff)
downloadsamba-e63d0c5f0c5546707b10217f709f6c7a5d5ae9f9.tar.gz
samba-e63d0c5f0c5546707b10217f709f6c7a5d5ae9f9.tar.bz2
samba-e63d0c5f0c5546707b10217f709f6c7a5d5ae9f9.zip
s3: Fix Coverity ID 2613 -- UNINIT
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Sep 13 12:39:10 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/rpc_client/util_lsarpc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/rpc_client/util_lsarpc.c b/source3/rpc_client/util_lsarpc.c
index df52f53471..169c10bb5d 100644
--- a/source3/rpc_client/util_lsarpc.c
+++ b/source3/rpc_client/util_lsarpc.c
@@ -65,6 +65,7 @@ static NTSTATUS ai_array_2_trust_domain_info_buffer(TALLOC_CTX *mem_ctx,
ai->array[i].AuthInfo.clear.size,
&b[i].data.data,
&size)) {
+ status = NT_STATUS_INVALID_PARAMETER;
goto fail;
}
b[i].data.size = size;