svn commit: samba r7060 - in branches/SAMBA_4_0/source/web_server/ejs: .

tpot at samba.org tpot at samba.org
Sun May 29 00:09:21 GMT 2005


Author: tpot
Date: 2005-05-29 00:09:20 +0000 (Sun, 29 May 2005)
New Revision: 7060

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

Log:
Fix use of uninitialised variable.

Modified:
   branches/SAMBA_4_0/source/web_server/ejs/ejs.c


Changeset:
Modified: branches/SAMBA_4_0/source/web_server/ejs/ejs.c
===================================================================
--- branches/SAMBA_4_0/source/web_server/ejs/ejs.c	2005-05-28 23:38:52 UTC (rev 7059)
+++ branches/SAMBA_4_0/source/web_server/ejs/ejs.c	2005-05-29 00:09:20 UTC (rev 7060)
@@ -845,7 +845,7 @@
 	if (varValue) {
 		*varValue = 0;
 	}
-	currentObj = ejsFindObj(ep, 0, varName, flags);
+	currentObj = ejsFindObj(ep, 0, varName_c, flags);
 	currentVar = 0;
 	propertyName = 0;
 



More information about the samba-cvs mailing list