http://bugs.winehq.com/show_bug.cgi?id=1469
mike_mccormack@start.com.au changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1
------- Additional Comments From mike_mccormack@start.com.au 2003-26-05 00:14 ------- This bug is dependent on the current working directory. Uwe's patch is correct, but the bug it fixes was masking another.
cwd = c:\ FindFirstFile("C:") -> INVALID_HANDLE_VALUE
cwd = c:\windows FindFirstFile("c:") -> one entry -> "windows"
So it appears that:
cwd = c:\windows FindFirstFile("c:")
is the same as
cwd = c:\ FindFirstFile("c:\windows")
interesting implementation hey?