mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1128219 - Re-check mListener while calling OnStopRequest after OnStartRequest in HttpBaseChannel::DoNotifyListener. r=michal
This commit is contained in:
parent
f7f87f9165
commit
45c91c54f3
@ -2011,16 +2011,19 @@ HttpBaseChannel::ReleaseListeners()
|
|||||||
void
|
void
|
||||||
HttpBaseChannel::DoNotifyListener()
|
HttpBaseChannel::DoNotifyListener()
|
||||||
{
|
{
|
||||||
|
if (mListener) {
|
||||||
|
mListener->OnStartRequest(this, mListenerContext);
|
||||||
|
}
|
||||||
|
|
||||||
// Make sure mIsPending is set to false. At this moment we are done from
|
// Make sure mIsPending is set to false. At this moment we are done from
|
||||||
// the point of view of our consumer and we have to report our self
|
// the point of view of our consumer and we have to report our self
|
||||||
// as not-pending.
|
// as not-pending.
|
||||||
|
mIsPending = false;
|
||||||
|
|
||||||
if (mListener) {
|
if (mListener) {
|
||||||
mListener->OnStartRequest(this, mListenerContext);
|
|
||||||
mIsPending = false;
|
|
||||||
mListener->OnStopRequest(this, mListenerContext, mStatus);
|
mListener->OnStopRequest(this, mListenerContext, mStatus);
|
||||||
} else {
|
|
||||||
mIsPending = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// We have to make sure to drop the references to listeners and callbacks
|
// We have to make sure to drop the references to listeners and callbacks
|
||||||
// no longer needed
|
// no longer needed
|
||||||
ReleaseListeners();
|
ReleaseListeners();
|
||||||
|
Loading…
Reference in New Issue
Block a user