mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 669975 - websockets e10s mLoadGroup member duplicated r=jdm
This commit is contained in:
parent
0ef0f28f39
commit
5347af7a72
@ -568,6 +568,12 @@ WebSocketChannel::~WebSocketChannel()
|
||||
mContext.forget(&forgettableContext);
|
||||
NS_ProxyRelease(mainThread, forgettableContext, PR_FALSE);
|
||||
}
|
||||
|
||||
if (mLoadGroup) {
|
||||
nsILoadGroup *forgettableGroup;
|
||||
mLoadGroup.forget(&forgettableGroup);
|
||||
NS_ProxyRelease(mainThread, forgettableGroup, PR_FALSE);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -209,7 +209,6 @@ private:
|
||||
nsCOMPtr<nsIEventTarget> mSocketThread;
|
||||
nsCOMPtr<nsIHttpChannelInternal> mChannel;
|
||||
nsCOMPtr<nsIHttpChannel> mHttpChannel;
|
||||
nsCOMPtr<nsILoadGroup> mLoadGroup;
|
||||
nsCOMPtr<nsICancelable> mDNSRequest;
|
||||
nsCOMPtr<nsIAsyncVerifyRedirectCallback> mRedirectCallback;
|
||||
nsCOMPtr<nsIRandomGenerator> mRandomGenerator;
|
||||
|
Loading…
Reference in New Issue
Block a user