mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SHLWAPI] - PathIsUNC returns FALSE for paths starting with "\\?". Should be sent to wine.
svn path=/trunk/; revision=54542
This commit is contained in:
parent
73bbc7c1e6
commit
5d73fe256d
1 changed files with 2 additions and 2 deletions
|
@ -2186,7 +2186,7 @@ BOOL WINAPI PathIsUNCA(LPCSTR lpszPath)
|
|||
{
|
||||
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 @@ BOOL WINAPI PathIsUNCW(LPCWSTR lpszPath)
|
|||
{
|
||||
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