Module: wine Branch: master Commit: d4e7dacfc1cbdcb0c7e458f31f7beafb78c455a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d4e7dacfc1cbdcb0c7e458f31f...
Author: Nicolas Le Cam niko.lecam@gmail.com Date: Tue Apr 26 03:20:20 2011 +0200
mshtml: Fix uninitialized variable warning.
---
dlls/mshtml/navigate.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/navigate.c b/dlls/mshtml/navigate.c index 78e747a..e93f1e9 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; }