1
0
mirror of synced 2024-09-16 16:46:09 +00:00

Fixed: list index out of bounds

This commit is contained in:
Mark van Renswoude 2011-02-18 14:59:12 +00:00
parent c82652a873
commit c5ae6a8cef

View File

@ -196,8 +196,12 @@ begin
if SectionStack.Count > 0 then
begin
lastItem := Pred(SectionStack.Count);
FSection := (SectionStack[Pred(lastItem)] as IXMLSection);
if lastItem < 0 then
FSection := Configuration
else
FSection := (SectionStack[Pred(lastItem)] as IXMLSection);
SectionStack.Delete(lastItem);
end;
end;