소스 검색

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 6 년 전
부모
커밋
6464d5f853
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();
 	}
 }