Преглед изворни кода

Ignoring even EExternalException after too big file is loaded into the internal editor

(p=98185)

Source commit: 2b45ee0092438f60ec72fbac1bf7a6aa74ef53ad
Martin Prikryl пре 5 година
родитељ
комит
a9fd620201
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      source/forms/Editor.cpp

+ 1 - 0
source/forms/Editor.cpp

@@ -1422,6 +1422,7 @@ void __fastcall TEditorForm::CheckFileSize()
       // Those are actually nearly all internal exceptions we ever practically get
       IgnoreException(typeid(EOutOfMemory));
       IgnoreException(typeid(EAccessViolation));
+      IgnoreException(typeid(EExternalException));
     }
   }
 }