reactos/dll/win32/shlwapi/shlwapi_ros.diff
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +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;
}