fix, possible AV when trying to quit and if the FSP just got closed while a group also present

This commit is contained in:
Basile Burg 2023-01-05 16:12:48 +01:00
parent 3dfad53fe3
commit 390ec7777e
1 changed files with 1 additions and 1 deletions

View File

@ -1082,7 +1082,7 @@ begin
// group, group item has the focus // group, group item has the focus
grp := getProjectGroup(); grp := getProjectGroup();
fProjectGroup := grp.groupFilename(); fProjectGroup := grp.groupFilename();
if fProjectGroup.isNotEmpty() and MainForm.fProj.inGroup() then if fProjectGroup.isNotEmpty() and assigned(MainForm.fProj) and MainForm.fProj.inGroup() then
begin begin
fProjectIndex := grp.getProjectIndex(); fProjectIndex := grp.getProjectIndex();
fProjectConfigIndex := MainForm.fProj.getActiveConfigurationIndex(); fProjectConfigIndex := MainForm.fProj.getActiveConfigurationIndex();