diff --git a/dlls/shlwapi/url.c b/dlls/shlwapi/url.c index 87fbb25e8ff..ba7cdb6ee92 100644 --- a/dlls/shlwapi/url.c +++ b/dlls/shlwapi/url.c @@ -2155,6 +2155,8 @@ BOOL WINAPI PathIsURLA(LPCSTR lpstrPath) PARSEDURLA base; DWORD res1; + TRACE("%s\n", debugstr_a(lpstrPath)); + if (!lpstrPath || !*lpstrPath) return FALSE; /* get protocol */ @@ -2173,6 +2175,8 @@ BOOL WINAPI PathIsURLW(LPCWSTR lpstrPath) PARSEDURLW base; DWORD res1; + TRACE("%s\n", debugstr_w(lpstrPath)); + if (!lpstrPath || !*lpstrPath) return FALSE; /* get protocol */