fix possible av when project doesn't load

json to sdl conversion failure can cause this
This commit is contained in:
Basile Burg 2019-02-11 05:06:36 +01:00
parent e4dc6bf981
commit adb1449863
1 changed files with 2 additions and 0 deletions

View File

@ -252,6 +252,8 @@ begin
if hasValidLibProject then
begin
prj := loadProject(fLibProject, true);
if not assigned(prj) then
exit;
str := TStringList.Create;
try
cnt := prj.sourcesCount-1;