mshtml: Fix uninitialized variable warning.

This commit is contained in:
Nicolas Le Cam 2011-04-26 03:20:20 +02:00 committed by Alexandre Julliard
parent f54042df66
commit d4e7dacfc1
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
nsIChannelEventSink_Release(sink);
return hres;
}