svn commit: samba r22553 - in branches: SAMBA_3_0/source/nsswitch SAMBA_3_0_25/source/nsswitch

vlendec at samba.org vlendec at samba.org
Sat Apr 28 12:50:39 GMT 2007


Author: vlendec
Date: 2007-04-28 12:50:35 +0000 (Sat, 28 Apr 2007)
New Revision: 22553

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

Log:
Fix the build
Modified:
   branches/SAMBA_3_0/source/nsswitch/idmap_ad.c
   branches/SAMBA_3_0/source/nsswitch/idmap_rid.c
   branches/SAMBA_3_0_25/source/nsswitch/idmap_ad.c
   branches/SAMBA_3_0_25/source/nsswitch/idmap_rid.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/idmap_ad.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/idmap_ad.c	2007-04-28 09:34:32 UTC (rev 22552)
+++ branches/SAMBA_3_0/source/nsswitch/idmap_ad.c	2007-04-28 12:50:35 UTC (rev 22553)
@@ -167,7 +167,7 @@
 	const char *range = NULL;
 	const char *schema_mode = NULL;	
 
-	if ( (ctx = TALLOC_ZERO(dom, struct idmap_ad_context)) == NULL ) {
+	if ( (ctx = TALLOC_ZERO_P(dom, struct idmap_ad_context)) == NULL ) {
 		DEBUG(0, ("Out of memory!\n"));
 		return NT_STATUS_NO_MEMORY;
 	}

Modified: branches/SAMBA_3_0/source/nsswitch/idmap_rid.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/idmap_rid.c	2007-04-28 09:34:32 UTC (rev 22552)
+++ branches/SAMBA_3_0/source/nsswitch/idmap_rid.c	2007-04-28 12:50:35 UTC (rev 22553)
@@ -44,7 +44,7 @@
 	char *config_option = NULL;
 	const char *range;
 
-	if ( (ctx = TALLOC_ZERO(dom, struct idmap_rid_context)) == NULL ) {
+	if ( (ctx = TALLOC_ZERO_P(dom, struct idmap_rid_context)) == NULL ) {
 		DEBUG(0, ("Out of memory!\n"));
 		return NT_STATUS_NO_MEMORY;
 	}

Modified: branches/SAMBA_3_0_25/source/nsswitch/idmap_ad.c
===================================================================
--- branches/SAMBA_3_0_25/source/nsswitch/idmap_ad.c	2007-04-28 09:34:32 UTC (rev 22552)
+++ branches/SAMBA_3_0_25/source/nsswitch/idmap_ad.c	2007-04-28 12:50:35 UTC (rev 22553)
@@ -167,7 +167,7 @@
 	const char *range = NULL;
 	const char *schema_mode = NULL;	
 
-	if ( (ctx = TALLOC_ZERO(dom, struct idmap_ad_context)) == NULL ) {
+	if ( (ctx = TALLOC_ZERO_P(dom, struct idmap_ad_context)) == NULL ) {
 		DEBUG(0, ("Out of memory!\n"));
 		return NT_STATUS_NO_MEMORY;
 	}

Modified: branches/SAMBA_3_0_25/source/nsswitch/idmap_rid.c
===================================================================
--- branches/SAMBA_3_0_25/source/nsswitch/idmap_rid.c	2007-04-28 09:34:32 UTC (rev 22552)
+++ branches/SAMBA_3_0_25/source/nsswitch/idmap_rid.c	2007-04-28 12:50:35 UTC (rev 22553)
@@ -44,7 +44,7 @@
 	char *config_option = NULL;
 	const char *range;
 
-	if ( (ctx = TALLOC_ZERO(dom, struct idmap_rid_context)) == NULL ) {
+	if ( (ctx = TALLOC_ZERO_P(dom, struct idmap_rid_context)) == NULL ) {
 		DEBUG(0, ("Out of memory!\n"));
 		return NT_STATUS_NO_MEMORY;
 	}



More information about the samba-cvs mailing list