On Wed, 28 Jan 2004, Mike McCormack wrote:
This patch fixes the problem with non-existant directories and .. in pathnames. (and it makes my test case work, Dimi!)
- /* don't mess with unix path names */
- if( strchrW(name,'/') )
return DOSFS_GetFullNameNoDots( name, check_last, full );
I don't think this is a good test for Unix path names. AFAAIK, DOS supports '/' as well as path separator. Maybe we should export a wine_is_unix_path() function...