svn commit: samba r24537 - in branches/SAMBA_3_2/source/librpc/gen_ndr: .

metze at samba.org metze at samba.org
Sat Aug 18 10:32:54 GMT 2007


Author: metze
Date: 2007-08-18 10:32:53 +0000 (Sat, 18 Aug 2007)
New Revision: 24537

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

Log:
regenerate after pidl fixes

metze
Modified:
   branches/SAMBA_3_2/source/librpc/gen_ndr/srv_netlogon.c
   branches/SAMBA_3_2/source/librpc/gen_ndr/srv_unixinfo.c


Changeset:
Modified: branches/SAMBA_3_2/source/librpc/gen_ndr/srv_netlogon.c
===================================================================
--- branches/SAMBA_3_2/source/librpc/gen_ndr/srv_netlogon.c	2007-08-18 10:32:06 UTC (rev 24536)
+++ branches/SAMBA_3_2/source/librpc/gen_ndr/srv_netlogon.c	2007-08-18 10:32:53 UTC (rev 24537)
@@ -2836,7 +2836,7 @@
 		return False;
 	}
 	
-	r.out.trusts = talloc_zero_array(mem_ctx, struct netr_DomainTrust *, count);
+	r.out.trusts = talloc_zero_array(mem_ctx, struct netr_DomainTrust *, r.out.count);
 	if (r.out.trusts == NULL) {
 		talloc_free(mem_ctx);
 		return False;

Modified: branches/SAMBA_3_2/source/librpc/gen_ndr/srv_unixinfo.c
===================================================================
--- branches/SAMBA_3_2/source/librpc/gen_ndr/srv_unixinfo.c	2007-08-18 10:32:06 UTC (rev 24536)
+++ branches/SAMBA_3_2/source/librpc/gen_ndr/srv_unixinfo.c	2007-08-18 10:32:53 UTC (rev 24537)
@@ -322,7 +322,7 @@
 	
 	ZERO_STRUCT(r.out);
 	r.out.count = r.in.count;
-	r.out.infos = talloc_zero_array(mem_ctx, struct unixinfo_GetPWUidInfo, *r.in.count);
+	r.out.infos = talloc_zero_array(mem_ctx, struct unixinfo_GetPWUidInfo, *r.out.count);
 	if (r.out.infos == NULL) {
 		talloc_free(mem_ctx);
 		return False;



More information about the samba-cvs mailing list