[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Thu Oct 22 09:28:04 UTC 2015


The branch, master has been updated
       via  d4059e1 auth: gensec: Parameters out_mem_ctx and ev are passed in the wrong order to gensec_spnego_server_try_fallback().
      from  f1c49d7 messaging: Fix creating the dgm lockfile

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit d4059e1a53ea8940b1b147d797efa1b39a5cabd1
Author: Jeremy Allison <jra at samba.org>
Date:   Wed Oct 21 11:13:46 2015 -0700

    auth: gensec: Parameters out_mem_ctx and ev are passed in the wrong order to gensec_spnego_server_try_fallback().
    
    Fix suggested by <lev at zadarastorage.com>. Fixes a memory leak.
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11565
    
    Signed-off-by: Jeremy Allison <jra at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Thu Oct 22 11:27:19 CEST 2015 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 auth/gensec/spnego.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/auth/gensec/spnego.c b/auth/gensec/spnego.c
index c111b85..73c76eb 100644
--- a/auth/gensec/spnego.c
+++ b/auth/gensec/spnego.c
@@ -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 */
 


-- 
Samba Shared Repository



More information about the samba-cvs mailing list