Explorar o código

UI: Check for null pointer

This was actually the line of code that the mixer dock widget crash was
triggered by.  This technically shouldn't ever be null, but better to be
safe than sorry.
jp9000 %!s(int64=6) %!d(string=hai) anos
pai
achega
6464d5f853
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      UI/window-dock-browser.cpp

+ 1 - 1
UI/window-dock-browser.cpp

@@ -14,7 +14,7 @@ void BrowserDock::closeEvent(QCloseEvent *event)
 		panel_version = obs_browser_qcef_version();
 	}
 
-	if (panel_version >= 2) {
+	if (panel_version >= 2 && !!cefWidget) {
 		cefWidget->closeBrowser();
 	}
 }