svn commit: samba r22737 - in branches: SAMBA_3_0/source/nsswitch SAMBA_3_0_26/source/nsswitch

gd at samba.org gd at samba.org
Mon May 7 10:14:33 GMT 2007


Author: gd
Date: 2007-05-07 10:14:32 +0000 (Mon, 07 May 2007)
New Revision: 22737

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

Log:
Fix crash bug (info3 is now talloced).

Guenther

Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c
   branches/SAMBA_3_0_26/source/nsswitch/winbindd_ads.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c	2007-05-07 09:35:35 UTC (rev 22736)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c	2007-05-07 10:14:32 UTC (rev 22737)
@@ -487,7 +487,7 @@
 			      &info->homedir, &info->shell, &info->full_name, 
 			      &info->primary_gid );	
 
-		SAFE_FREE(user);
+		TALLOC_FREE(user);
 				
 		return NT_STATUS_OK;
 	}

Modified: branches/SAMBA_3_0_26/source/nsswitch/winbindd_ads.c
===================================================================
--- branches/SAMBA_3_0_26/source/nsswitch/winbindd_ads.c	2007-05-07 09:35:35 UTC (rev 22736)
+++ branches/SAMBA_3_0_26/source/nsswitch/winbindd_ads.c	2007-05-07 10:14:32 UTC (rev 22737)
@@ -487,7 +487,7 @@
 			      &info->homedir, &info->shell, &info->full_name, 
 			      &info->primary_gid );	
 
-		SAFE_FREE(user);
+		TALLOC_FREE(user);
 				
 		return NT_STATUS_OK;
 	}



More information about the samba-cvs mailing list