mirror of
https://github.com/samba-team/samba.git
synced 2025-03-20 22:50:26 +03:00
auth: gensec: Parameters out_mem_ctx and ev are passed in the wrong order to gensec_spnego_server_try_fallback().
Fix suggested by <lev@zadarastorage.com>. Fixes a memory leak. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11565 Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu Oct 22 11:27:19 CEST 2015 on sn-devel-104 (cherry picked from commit d4059e1a53ea8940b1b147d797efa1b39a5cabd1)
This commit is contained in:
parent
374a288022
commit
3fb7397302
@ -738,7 +738,7 @@ static NTSTATUS gensec_spnego_update(struct gensec_security *gensec_security, TA
|
||||
len = spnego_read_data(gensec_security, in, &spnego);
|
||||
if (len == -1) {
|
||||
return gensec_spnego_server_try_fallback(gensec_security, spnego_state,
|
||||
out_mem_ctx, ev, in, out);
|
||||
ev, out_mem_ctx, in, out);
|
||||
}
|
||||
/* client sent NegTargetInit, we send NegTokenTarg */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user