From 802b17c8f5f753305beaacf8dc70af270128705d Mon Sep 17 00:00:00 2001 From: Felix Nawothnig Date: Mon, 18 Jul 2005 09:08:16 +0000 Subject: [PATCH] Fix misuse of UrlCombineW. --- dlls/urlmon/umon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/urlmon/umon.c b/dlls/urlmon/umon.c index 9df80452088..b4d7904f100 100644 --- a/dlls/urlmon/umon.c +++ b/dlls/urlmon/umon.c @@ -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));