svn commit: samba r4163 - in branches/SAMBA_4_0/source/ntvfs/posix: .

tridge at samba.org tridge at samba.org
Sun Dec 12 09:11:40 GMT 2004


Author: tridge
Date: 2004-12-12 09:11:39 +0000 (Sun, 12 Dec 2004)
New Revision: 4163

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

Log:
2nd attempt at fixing the OS/2 "del *" problem



Modified:
   branches/SAMBA_4_0/source/ntvfs/posix/pvfs_dirlist.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/posix/pvfs_dirlist.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/posix/pvfs_dirlist.c	2004-12-12 09:02:18 UTC (rev 4162)
+++ branches/SAMBA_4_0/source/ntvfs/posix/pvfs_dirlist.c	2004-12-12 09:11:39 UTC (rev 4163)
@@ -179,8 +179,6 @@
 		return dir->last_name;
 	}
 
-	if (dir->last_name) talloc_free(dir->last_name);
-	dir->last_name = NULL;
 	dir->end_of_search = True;
 	pvfs_list_hibernate(dir);
 	return NULL;
@@ -196,10 +194,6 @@
 		closedir(dir->dir);
 		dir->dir = NULL;
 	}
-	if (!dir->no_wildcard && dir->last_name) {
-		talloc_free(dir->last_name);
-		dir->last_name = NULL;
-	}
 }
 
 



More information about the samba-cvs mailing list