"Alexandre" == Alexandre Julliard julliard@wine.codeweavers.com writes:
Alexandre> ChangeSet ID: 7890 CVSROOT: /opt/cvs-commit Module name: wine Alexandre> Changes by: julliard@wine.codeweavers.com 2003/04/16 21:10:04
Alexandre> Modified files: files : dos_fs.c dlls/kernel/tests: file.c
Alexandre> Log message: Uwe Bonnes Alexandre> bon@elektron.ikp.physik.tu-darmstadt.de FindFirstFile on Alexandre> root directory should fail.
Alexandre> Patch: http://cvs.winehq.com/patch.py?id=7890
@@ -1937,7 +1937,6 @@ UINT codepage;
data->dwReserved0 = data->dwReserved1 = 0x0; - if (!lpFileName) return 0; if (lpFileName[0] == '\' && lpFileName[1] == '\') { ERR("UNC path name\n");
This first patch thunk wasn't in the patch I sent. Is this intentional?
Bye
Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de writes:
@@ -1937,7 +1937,6 @@ UINT codepage;
data->dwReserved0 = data->dwReserved1 = 0x0;
if (!lpFileName) return 0; if (lpFileName[0] == '\\' && lpFileName[1] == '\\') { ERR("UNC path name\n");
This first patch thunk wasn't in the patch I sent. Is this intentional?
Yes, I made a few changes to the patch, and in the process removed that redundant test.