Fix misuse of UrlCombineW.

This commit is contained in:
Felix Nawothnig 2005-07-18 09:08:16 +00:00 committed by Alexandre Julliard
parent 8c9b330cce
commit 802b17c8f5
1 changed files with 1 additions and 1 deletions

View File

@ -1134,7 +1134,7 @@ static const IMonikerVtbl VT_URLMonikerImpl =
static HRESULT URLMonikerImpl_Construct(URLMonikerImpl* This, LPCOLESTR lpszLeftURLName, LPCOLESTR lpszURLName)
{
HRESULT hres;
DWORD sizeStr;
DWORD sizeStr = INTERNET_MAX_URL_LENGTH;
TRACE("(%p,%s,%s)\n",This,debugstr_w(lpszLeftURLName),debugstr_w(lpszURLName));
memset(This, 0, sizeof(*This));