SynEdit: TLazSynEditNestedFoldsList fix crash with cached data

git-svn-id: branches/fixes_1_8@57812 -
This commit is contained in:
mattias 2018-05-07 18:16:29 +00:00
parent 3d4acf662c
commit bb0d8a9a63
2 changed files with 16 additions and 1 deletions

View File

@ -1297,7 +1297,7 @@ begin
if (FEvaluationIndex = FCount) then begin
FPreviousMergeLine := -1;
i := FPreviousCount; // + 1 - 1
if i > 0 then begin
if (i > 0) and (FPreviousEvaluationIndex < i) then begin
if i >= Length(FPreviousNestInfo) then
exit;
if (i > FPreviousEvaluationIndex) and

View File

@ -2463,6 +2463,21 @@ begin
end;
{%endregion TestText12}
{%region cache from previous access}
PushBaseName('cache');
TstSetText('TestText1', TestText1);
TheList := FoldedView.FoldProvider.NestedFoldsList;
EnableFolds([cfbtBeginEnd..cfbtNone]);
PrepareLine := -1;
InitList('All Enabled ', TheList, 1, 0, [], False, True);
TheList.Count; // only access count
TheList.Line := 8;
TheList.HLNode[0]; // do not crash // group levels are not initialized
PopBaseName;
{%endregion cache}
PopBaseName;PopBaseName;
end;