소스 검색

Browser: Don't crash when selecting nothing in the Inspector DOM tree

Sam Atkins 3 년 전
부모
커밋
38bb9afea8
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Userland/Applications/Browser/InspectorWidget.cpp

+ 3 - 0
Userland/Applications/Browser/InspectorWidget.cpp

@@ -43,6 +43,9 @@ void InspectorWidget::set_selection(Selection selection)
 
 void InspectorWidget::set_selection(GUI::ModelIndex const index)
 {
+    if (!index.is_valid())
+        return;
+
     auto* json = static_cast<JsonObject const*>(index.internal_data());
     VERIFY(json);