svn commit: samba r8254 - in branches/SAMBA_4_0/source/scripting/ejs: .

tridge at samba.org tridge at samba.org
Sat Jul 9 05:24:35 GMT 2005


Author: tridge
Date: 2005-07-09 05:24:35 +0000 (Sat, 09 Jul 2005)
New Revision: 8254

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8254

Log:
fixed a valgrind error in the unix auth code



Modified:
   branches/SAMBA_4_0/source/scripting/ejs/smbcalls.c


Changeset:
Modified: branches/SAMBA_4_0/source/scripting/ejs/smbcalls.c
===================================================================
--- branches/SAMBA_4_0/source/scripting/ejs/smbcalls.c	2005-07-09 05:23:47 UTC (rev 8253)
+++ branches/SAMBA_4_0/source/scripting/ejs/smbcalls.c	2005-07-09 05:24:35 UTC (rev 8254)
@@ -91,7 +91,7 @@
 		goto done;
 	}
 
-	pw_blob = data_blob(password, strlen(password)),
+	pw_blob = data_blob(password, strlen(password)+1),
 	make_user_info(tmp_ctx, username, username,
 				domain, domain,
 				remote_host, remote_host,



More information about the samba-cvs mailing list