DOSFS_ToFCBFormat Bug Fix

ccrayne at crayne.org ccrayne at crayne.org
Sun Jan 13 20:39:38 CST 2002


Change Log:
files/dos_fs.c
ccrayne at crayne.org
Fixed bug in DOSFS_ToFCBFormat which caused "*" to parse as "*." instead
of as "*.*" --- files/dos_fs.c.20011226	Sun Jan 13 18:19:03 2002
+++ files/dos_fs.c	Sun Jan 13 18:30:14 2002
@@ -215,7 +215,7 @@
     if (*p == '*')
     {
         /* Skip all chars after wildcard up to first dot */
-        while (*p && (*p != '/') && (*p != '\\') && (*p != '.')) p++; +       
if(*(p+1)) while (*p && (*p != '/') && (*p != '\\') && (*p != '.')) p++;
     }
     else
     {





More information about the wine-patches mailing list