[2/2] kernel32: Add special case for "." and ".." to GetLongPathName.

Dmitry Timoshkov dmitry at baikal.ru
Tue Oct 29 21:44:13 CDT 2013


---
 dlls/kernel32/path.c       | 11 +++++++++++
 dlls/kernel32/tests/path.c |  4 ----
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c
index 2582459..de143b4 100644
--- a/dlls/kernel32/path.c
+++ b/dlls/kernel32/path.c
@@ -358,6 +358,17 @@ DWORD WINAPI GetLongPathNameW( LPCWSTR shortpath, LPWSTR longpath, DWORD longlen
         for (; *p && *p != '/' && *p != '\\'; p++);
         tmplen = p - (shortpath + sp);
         lstrcpynW(tmplongpath + lp, shortpath + sp, tmplen + 1);
+
+        if (tmplongpath[lp] == '.')
+        {
+            if (tmplen == 1 || (tmplen == 2 && tmplongpath[sp + 1] == '.'))
+            {
+                lp += tmplen;
+                sp += tmplen;
+                continue;
+            }
+        }
+
         /* Check if the file exists and use the existing file name */
         goit = FindFirstFileW(tmplongpath, &wfd);
         if (goit == INVALID_HANDLE_VALUE)
diff --git a/dlls/kernel32/tests/path.c b/dlls/kernel32/tests/path.c
index 62236a0..7cfa19c 100644
--- a/dlls/kernel32/tests/path.c
+++ b/dlls/kernel32/tests/path.c
@@ -1958,7 +1958,6 @@ static void test_relative_path(void)
     strcpy(buf, "deadbeef");
     ret = pGetLongPathNameA(".", buf, MAX_PATH);
     ok(ret, "GetLongPathName error %d\n", GetLastError());
-todo_wine
     ok(!strcmp(buf, "."), "expected ., got %s\n", buf);
     strcpy(buf, "deadbeef");
     ret = GetShortPathNameA(".", buf, MAX_PATH);
@@ -1968,7 +1967,6 @@ todo_wine
     strcpy(buf, "deadbeef");
     ret = pGetLongPathNameA("..", buf, MAX_PATH);
     ok(ret, "GetLongPathName error %d\n", GetLastError());
-todo_wine
     ok(!strcmp(buf, ".."), "expected .., got %s\n", buf);
     strcpy(buf, "deadbeef");
     ret = GetShortPathNameA("..", buf, MAX_PATH);
@@ -1977,9 +1975,7 @@ todo_wine
 
     strcpy(buf, "deadbeef");
     ret = pGetLongPathNameA("..\\foo\\file", buf, MAX_PATH);
-todo_wine
     ok(ret, "GetLongPathName error %d\n", GetLastError());
-todo_wine
     ok(!strcmp(buf, "..\\foo\\file"), "expected ..\\foo\\file, got %s\n", buf);
     strcpy(buf, "deadbeef");
     ret = GetShortPathNameA("..\\foo\\file", buf, MAX_PATH);
-- 
1.8.4.1




More information about the wine-patches mailing list