[SHLWAPI] - Add a diff file

svn path=/trunk/; revision=54543
This commit is contained in:
Rafal Harabien 2011-11-29 19:30:50 +00:00
parent 5d73fe256d
commit d6462341ba

View 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;
}