Commit 7a5f9b62 authored by Allan Sandfeld Jensen's avatar Allan Sandfeld Jensen
Browse files

Fix crash when updating a storage context with active requests


Requests keep pointers to objects owneded by the storage context such
as the SSL context handler and HTTP cache. This means we must stop
all requests before destroying the context, otherwise the requests
will access deleted data.

Change-Id: I67863287b3ffb470c8d84ff6cac143493998a6da
Reviewed-by: default avatarAndras Becsi <andras.becsi@theqtcompany.com>
Showing with 12 additions and 0 deletions
......@@ -124,6 +124,18 @@ void URLRequestContextGetterQt::generateStorage()
{
Q_ASSERT(m_urlRequestContext);
if (m_storage) {
// We must stop all requests before deleting their backends.
std::set<const net::URLRequest*>* url_requests = m_urlRequestContext->url_requests();
std::set<const net::URLRequest*>::const_iterator it = url_requests->begin();
std::set<const net::URLRequest*>::const_iterator end = url_requests->end();
for ( ; it != end; ++it) {
net::URLRequest* request = const_cast<net::URLRequest*>(*it);
if (request)
request->Cancel();
}
}
m_storage.reset(new net::URLRequestContextStorage(m_urlRequestContext.get()));
net::ProxyConfigService *proxyConfigService = m_proxyConfigService.fetchAndStoreAcquire(0);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment