mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SHLWAPI] - Add a diff file
svn path=/trunk/; revision=54543
This commit is contained in:
parent
5d73fe256d
commit
d6462341ba
1 changed files with 22 additions and 0 deletions
22
reactos/dll/win32/shlwapi/shlwapi_ros.diff
Normal file
22
reactos/dll/win32/shlwapi/shlwapi_ros.diff
Normal file
|
@ -0,0 +1,22 @@
|
|||
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;
|
||||
}
|
Loading…
Reference in a new issue