diff options
author | Volker Lendecke <vl@samba.org> | 2011-09-13 10:47:15 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-09-13 12:39:10 +0200 |
commit | e63d0c5f0c5546707b10217f709f6c7a5d5ae9f9 (patch) | |
tree | 70d089d4a5f5c57b389cc51068657dac6fef376b /source3/rpc_client | |
parent | 67605bfc55cc106de99d318f0c1d484261926b3b (diff) | |
download | samba-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/rpc_client')
-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 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; |