diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-21 19:10:15 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-08-03 18:48:01 +1000 |
commit | d3fe48ba48b25f359292ee96dbf5cecc0b0b16a3 (patch) | |
tree | d4391a7ab803747f8c17ac50cc4c98e342e438c6 /source3/librpc | |
parent | 16b2118b4369f8204d86d5ad2eb117837da26789 (diff) | |
download | samba-d3fe48ba48b25f359292ee96dbf5cecc0b0b16a3.tar.gz samba-d3fe48ba48b25f359292ee96dbf5cecc0b0b16a3.tar.bz2 samba-d3fe48ba48b25f359292ee96dbf5cecc0b0b16a3.zip |
gensec: Remove mem_ctx from calls that do not return memory
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/rpc/dcerpc_helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/rpc/dcerpc_helpers.c b/source3/librpc/rpc/dcerpc_helpers.c index 7520d767ba..b53587ddb3 100644 --- a/source3/librpc/rpc/dcerpc_helpers.c +++ b/source3/librpc/rpc/dcerpc_helpers.c @@ -553,7 +553,7 @@ static NTSTATUS get_schannel_auth_footer(TALLOC_CTX *mem_ctx, case DCERPC_AUTH_LEVEL_PRIVACY: /* Data portion is encrypted. */ return netsec_incoming_packet(auth_state, - mem_ctx, true, + true, data->data, data->length, auth_token); @@ -561,7 +561,7 @@ static NTSTATUS get_schannel_auth_footer(TALLOC_CTX *mem_ctx, case DCERPC_AUTH_LEVEL_INTEGRITY: /* Data is signed. */ return netsec_incoming_packet(auth_state, - mem_ctx, false, + false, data->data, data->length, auth_token); |