svn commit: samba r4731 - in branches/SAMBA_3_0/source/lib: .

vlendec at samba.org vlendec at samba.org
Fri Jan 14 08:14:22 GMT 2005


Author: vlendec
Date: 2005-01-14 08:14:22 +0000 (Fri, 14 Jan 2005)
New Revision: 4731

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

Log:
Fix the build
Modified:
   branches/SAMBA_3_0/source/lib/privileges.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/privileges.c
===================================================================
--- branches/SAMBA_3_0/source/lib/privileges.c	2005-01-14 02:10:11 UTC (rev 4730)
+++ branches/SAMBA_3_0/source/lib/privileges.c	2005-01-14 08:14:22 UTC (rev 4731)
@@ -393,10 +393,11 @@
 NTSTATUS privilege_set_init(PRIVILEGE_SET *priv_set)
 {
 	NTSTATUS ret;
+	TALLOC_CTX *mem_ctx;
 	
 	ZERO_STRUCTP( priv_set );
 
-	TALLOC_CTX *mem_ctx = talloc_init("privilege set");
+	mem_ctx = talloc_init("privilege set");
 	ALLOC_CHECK(mem_ctx, ret, done, "init_privilege");
 
 	priv_set->mem_ctx = mem_ctx;



More information about the samba-cvs mailing list