[SCM] Samba Shared Repository - branch master updated

Günther Deschner gd at samba.org
Fri Sep 17 03:50:22 MDT 2010


The branch, master has been updated
       via  e2d6b64 Fix array size of  a memmber of struct cli_ulogoff_state
      from  90d685a s4-devel: developer script for adding DNS entries via netlogon RPC

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


- Log -----------------------------------------------------------------
commit e2d6b64219b883363b4d1d92db27bf180c887d07
Author: Sumit Bose <sbose at redhat.com>
Date:   Fri Sep 17 10:33:08 2010 +0200

    Fix array size of  a memmber of struct cli_ulogoff_state
    
    The too small array makes UID-REGRESSION-FIX fail on 32bit
    architectures.
    
    Signed-off-by: Günther Deschner <gd at samba.org>

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

Summary of changes:
 source3/libsmb/cliconnect.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c
index 169bf4f..ebfc98b 100644
--- a/source3/libsmb/cliconnect.c
+++ b/source3/libsmb/cliconnect.c
@@ -1498,7 +1498,7 @@ NTSTATUS cli_session_setup(struct cli_state *cli,
 
 struct cli_ulogoff_state {
 	struct cli_state *cli;
-	uint16_t vwv[2];
+	uint16_t vwv[3];
 };
 
 static void cli_ulogoff_done(struct tevent_req *subreq);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list