1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

Add approriate TALLOC_CTX's thoughout the spnego code. No more implicit NULL contexts.

Jeremy.
This commit is contained in:
Jeremy Allison
2010-07-20 16:17:58 -07:00
parent 8df0f0e49e
commit 5002b3a90d
10 changed files with 65 additions and 74 deletions

View File

@ -764,7 +764,7 @@ static NTSTATUS make_cli_gss_blob(TALLOC_CTX *ctx,
p_tok_in = GSS_C_NO_BUFFER;
} else {
/* Remove the SPNEGO wrapper */
if (!spnego_parse_auth_response(spnego_blob_in, status_in, OID_KERBEROS5, &blob_in)) {
if (!spnego_parse_auth_response(ctx, spnego_blob_in, status_in, OID_KERBEROS5, &blob_in)) {
status = NT_STATUS_UNSUCCESSFUL;
goto fail;
}