shell32: try to guess the working directory in the run dialog

Juan Lang juan.lang at gmail.com
Tue Oct 21 20:14:59 CDT 2008


Hi Vincent,

+    while (*src)
+    {
+        *dest = *src;
+        if (*src == '\\')
+        {
+            DWORD attrs = GetFileAttributesW(result);

It sure looks like you're calling GetFileAttributesW with a
non-NULL-terminated string.  I doubt this will work as you intend.
--Juan



More information about the wine-devel mailing list