url: Fixed wrong argument (Coverity).

This commit is contained in:
Paul Vriens 2006-09-17 15:56:05 +02:00 committed by Alexandre Julliard
parent 53a48942a0
commit 2ade49bf08
2 changed files with 7 additions and 1 deletions

View file

@ -738,6 +738,12 @@ static void test_PathCreateFromUrl(void)
DWORD len, ret;
WCHAR ret_pathW[INTERNET_MAX_URL_LENGTH];
WCHAR *pathW, *urlW;
static const char url[] = "http://www.winehq.org";
/* Check ret_path = NULL */
len = sizeof(url);
ret = PathCreateFromUrlA(url, NULL, &len, 0);
ok ( ret == E_INVALIDARG, "got 0x%08lx expected E_INVALIDARG\n", ret);
for(i = 0; i < sizeof(TEST_PATHFROMURL) / sizeof(TEST_PATHFROMURL[0]); i++) {
len = INTERNET_MAX_URL_LENGTH;

View file

@ -66,7 +66,7 @@ BOOL WINAPI InetIsOffline(void)
HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, LPCSTR pszUrl,int nShowCmd)
{
LPSTR pszPath = NULL;
CHAR pszPath[MAX_PATH];
DWORD size = MAX_PATH;
HRESULT createpath = PathCreateFromUrlA(pszUrl,pszPath,&size,0);