diff options
author | Volker Lendecke <vl@samba.org> | 2011-02-26 18:12:32 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-04-12 13:24:24 +0200 |
commit | da5e5a6a83a6dcf04c51497f8b5f10621d7b47f7 (patch) | |
tree | 4ce85c4b7100504ebca1e079b6a52ab8de05680d /source3/libnet | |
parent | feb3cdee366a439e8526f439714c9068068cdaa4 (diff) | |
download | samba-da5e5a6a83a6dcf04c51497f8b5f10621d7b47f7.tar.gz samba-da5e5a6a83a6dcf04c51497f8b5f10621d7b47f7.tar.bz2 samba-da5e5a6a83a6dcf04c51497f8b5f10621d7b47f7.zip |
s3: Initialize output in libnet_Join
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/libnet')
-rw-r--r-- | source3/libnet/libnet_join.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c index e702ffc13b..6cdf196fd0 100644 --- a/source3/libnet/libnet_join.c +++ b/source3/libnet/libnet_join.c @@ -2068,6 +2068,8 @@ WERROR libnet_Join(TALLOC_CTX *mem_ctx, LIBNET_JOIN_IN_DUMP_CTX(mem_ctx, r); } + ZERO_STRUCT(r->out); + werr = libnet_join_pre_processing(mem_ctx, r); if (!W_ERROR_IS_OK(werr)) { goto done; |