reactos/dll/win32/shlwapi/shlwapi_ros.diff
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

23 lines
664 B
Diff

Index: path.c
===================================================================
--- path.c (working copy)
+++ path.c (working copy)
@@ -2186,7 +2186,7 @@
{
TRACE("(%s)\n",debugstr_a(lpszPath));
- if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\'))
+ if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\') && (lpszPath[2]!='?'))
return TRUE;
return FALSE;
}
@@ -2200,7 +2200,7 @@
{
TRACE("(%s)\n",debugstr_w(lpszPath));
- if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\'))
+ if (lpszPath && (lpszPath[0]=='\\') && (lpszPath[1]=='\\') && (lpszPath[2]!='?'))
return TRUE;
return FALSE;
}