@@ -173,10 +173,11 @@ bool CefBrowserPlatformDelegateNativeWin::CreateHostWindow() {
173
173
window_info_.parent_window , window_info_.menu ,
174
174
::GetModuleHandle (nullptr ), this);
175
175
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_) {
180
181
return false ;
181
182
}
182
183
@@ -569,10 +570,14 @@ LRESULT CALLBACK CefBrowserPlatformDelegateNativeWin::WndProc(HWND hwnd,
569
570
// Clear the user data pointer.
570
571
gfx::SetWindowUserData (hwnd, nullptr );
571
572
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
+ }
576
581
}
577
582
break ;
578
583
0 commit comments