diff options
author | Volker Lendecke <vl@samba.org> | 2011-01-06 02:12:00 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-01-07 13:28:06 +0100 |
commit | 1137cf8e6fa35cec24826642e4289c4a8df56cb8 (patch) | |
tree | 75ef1fdfd35661f56759e9df72719ae9637eda86 /source3/libsmb | |
parent | 126b1806b8e8fba98de94e217836680608621726 (diff) | |
download | samba-1137cf8e6fa35cec24826642e4289c4a8df56cb8.tar.gz samba-1137cf8e6fa35cec24826642e4289c4a8df56cb8.tar.bz2 samba-1137cf8e6fa35cec24826642e4289c4a8df56cb8.zip |
s3: Fix a valgrind error
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clidgram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clidgram.c b/source3/libsmb/clidgram.c index fe6269b9e1..8a95cba605 100644 --- a/source3/libsmb/clidgram.c +++ b/source3/libsmb/clidgram.c @@ -271,7 +271,7 @@ static bool parse_getdc_response( return false; } - status = pull_netlogon_samlogon_response(&blob, mem_ctx, r); + status = pull_netlogon_samlogon_response(&blob, r, r); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(r); return false; |