Module: wine Branch: master Commit: 7e255f1ac841f2078c572ff020f84b6027453083 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e255f1ac841f2078c572ff020...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Feb 27 18:56:05 2008 +0100
shlwapi: Added TRACEs to PathIsURL.
---
dlls/shlwapi/url.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/dlls/shlwapi/url.c b/dlls/shlwapi/url.c index 87fbb25..ba7cdb6 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 */