Skip to content
Snippets Groups Projects
Commit b495e4fa authored by ananta@chromium.org's avatar ananta@chromium.org
Browse files

Attempt to fix a chrome frame tests crash consistently seen on the IE9 builder. I was able to

reproduce it once and it appears to be occuring when the ListenSocket attempts to pass an
OnObjectSignaled notification to a delegate which is the web server which has already been destroyed

Attempted fix is to destroy the ListenSocket in the destructor of the web server.

BUG=none
TEST=Existing chrome frame tests.

TBR=amit

Review URL: http://codereview.chromium.org/6155009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71125 0039d316-1c4b-4281-b951-d872f2087c98
parent f9fe0007
No related merge requests found
......@@ -237,6 +237,8 @@ HTTPTestServer::HTTPTestServer(int port, const std::wstring& address,
}
HTTPTestServer::~HTTPTestServer() {
LOG(INFO) << __FUNCTION__;
server_ = NULL;
}
std::list<scoped_refptr<ConfigurableConnection>>::iterator
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment