From d4e7dacfc1cbdcb0c7e458f31f7beafb78c455a3 Mon Sep 17 00:00:00 2001 From: Nicolas Le Cam Date: Tue, 26 Apr 2011 03:20:20 +0200 Subject: [PATCH] mshtml: Fix uninitialized variable warning. --- dlls/mshtml/navigate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/mshtml/navigate.c b/dlls/mshtml/navigate.c index 78e747a31e2..e93f1e949ac 100644 --- a/dlls/mshtml/navigate.c +++ b/dlls/mshtml/navigate.c @@ -1424,9 +1424,10 @@ static HRESULT handle_redirect(nsChannelBSC *This, const WCHAR *new_url) FIXME("AsyncOnChannelRedirect failed: %08x\n", hres); else if(This->nschannel != callback->nschannel) FIXME("nschannel not updated\n"); + + nsIAsyncVerifyRedirectCallback_Release(&callback->nsIAsyncVerifyRedirectCallback_iface); } - nsIAsyncVerifyRedirectCallback_Release(&callback->nsIAsyncVerifyRedirectCallback_iface); nsIChannelEventSink_Release(sink); return hres; }