Only release the request context proxy if it exists (issue #677).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@734 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2012-08-07 17:18:08 +00:00
parent ba1dc0fe45
commit 26a2281486
1 changed files with 5 additions and 3 deletions

View File

@ -783,9 +783,11 @@ void CefBrowserImpl::UIT_DestroyBrowser() {
main_frame_ = NULL; main_frame_ = NULL;
// Delete the proxy on the IO thread. if (request_context_proxy_.get()) {
CefThread::DeleteSoon(CefThread::IO, FROM_HERE, // Delete the proxy on the IO thread.
request_context_proxy_.release()); CefThread::DeleteSoon(CefThread::IO, FROM_HERE,
request_context_proxy_.release());
}
// Remove the reference added in UIT_CreateBrowser(). // Remove the reference added in UIT_CreateBrowser().
Release(); Release();