Ver Fonte

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 há 6 anos atrás
pai
commit
6464d5f853
1 ficheiros alterados com 1 adições e 1 exclusões
  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();
 	}
 }