mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-02 21:21:16 +02:00
Fix a crash when closing an off-screen browser with no references (issue #1121).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1500 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
81f3a75f6a
commit
78cfa155c6
@ -1543,6 +1543,10 @@ void CefBrowserHostImpl::CloseContents(content::WebContents* source) {
|
|||||||
// via the platform window destruction mechanism.
|
// via the platform window destruction mechanism.
|
||||||
PlatformCloseWindow();
|
PlatformCloseWindow();
|
||||||
} else {
|
} else {
|
||||||
|
// Keep a reference to the browser while it's in the process of being
|
||||||
|
// destroyed.
|
||||||
|
CefRefPtr<CefBrowserHostImpl> browser(this);
|
||||||
|
|
||||||
// No window exists. Destroy the browser immediately.
|
// No window exists. Destroy the browser immediately.
|
||||||
DestroyBrowser();
|
DestroyBrowser();
|
||||||
if (!IsWindowRenderingDisabled()) {
|
if (!IsWindowRenderingDisabled()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user