Skip to content

Commit 0bf995a

Browse files
committed
win: alloy: Fix potential crash if browser creation is aborted (fixes #3862)
1 parent 49ac688 commit 0bf995a

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

libcef/browser/native/browser_platform_delegate_native_win.cc

+13-8
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,11 @@ bool CefBrowserPlatformDelegateNativeWin::CreateHostWindow() {
173173
window_info_.parent_window, window_info_.menu,
174174
::GetModuleHandle(nullptr), this);
175175

176-
// It's possible for CreateWindowEx to fail if the parent window was
177-
// destroyed between the call to CreateBrowser and the above one.
178-
DCHECK(window_info_.window);
179-
if (!window_info_.window) {
176+
// It's possible for CreateWindowEx to fail if the parent window was destroyed
177+
// between the call to CreateBrowser and the above one. It's also possible
178+
// that |browser_| will be nullptr if BrowserDestroyed() was called during
179+
// this time.
180+
if (!window_info_.window || !browser_) {
180181
return false;
181182
}
182183

@@ -569,10 +570,14 @@ LRESULT CALLBACK CefBrowserPlatformDelegateNativeWin::WndProc(HWND hwnd,
569570
// Clear the user data pointer.
570571
gfx::SetWindowUserData(hwnd, nullptr);
571572

572-
// Force the browser to be destroyed. This will result in a call to
573-
// BrowserDestroyed() that will release the reference added in
574-
// CreateHostWindow().
575-
AlloyBrowserHostImpl::FromBaseChecked(browser)->WindowDestroyed();
573+
// |browser| may be nullptr if the window was destroyed during browser
574+
// creation (e.g. CreateHostWindow() returned false).
575+
if (browser) {
576+
// Force the browser to be destroyed. This will result in a call to
577+
// BrowserDestroyed() that will release the reference added in
578+
// CreateHostWindow().
579+
AlloyBrowserHostImpl::FromBaseChecked(browser)->WindowDestroyed();
580+
}
576581
}
577582
break;
578583

0 commit comments

Comments
 (0)