From abace80fe4fb7f6e46ea0a021ec7f801eaed819b Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 8 Jan 2019 19:31:56 +0100 Subject: [PATCH] fix #390 - crash when trying to reload a native dexed project not yet renamed to *.dprj --- src/u_main.pas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/u_main.pas b/src/u_main.pas index 4271a7d5..9a38224f 100644 --- a/src/u_main.pas +++ b/src/u_main.pas @@ -1055,9 +1055,11 @@ begin if fProject.isNotEmpty and fProject.fileExists then begin dst.openProj(fProject); + if not assigned(dst.fProject) then + exit; hdl := getMultiDocHandler; if assigned(hdl) then - mem := hdl.findDocument(dst.fProject.filename); + mem := hdl.findDocument(dst.fProject.filename); if mem.isNotNil then if dst.fProject.getFormat = pfDEXED then mem.Highlighter := LfmSyn