From a47292a3abbc811a5a357e82fd45fab430798c95 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 22 Dec 2008 01:10:47 +0100 Subject: [PATCH] mshtml: Release owner in nsChannel destructor. --- dlls/mshtml/nsio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index 1dca2a49eb1..c918d12ff72 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -219,6 +219,8 @@ static nsrefcnt NSAPI nsChannel_Release(nsIHttpChannel *iface) nsIChannel_Release(This->channel); if(This->http_channel) nsIHttpChannel_Release(This->http_channel); + if(This->owner) + nsISupports_Release(This->owner); if(This->post_data_stream) nsIInputStream_Release(This->post_data_stream); if(This->load_group) -- 2.11.4.GIT