mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-21 23:19:29 +02:00
Converter: Fix a crash when converting a single unit. Issue #32785
git-svn-id: branches/fixes_1_8@56736 -
This commit is contained in:
parent
e4cfa6f5fd
commit
109749a2ef
@ -464,7 +464,8 @@ var
|
||||
i, x: Integer;
|
||||
begin
|
||||
for i:=fMissingUnits.Count-1 downto 0 do begin
|
||||
if ACommentedUnits.Find(fMissingUnits[i], x) then begin
|
||||
if Assigned(ACommentedUnits) and ACommentedUnits.Find(fMissingUnits[i], x) then
|
||||
begin
|
||||
fUnitsToComment.Add(fMissingUnits[i]);
|
||||
fMissingUnits.Delete(i);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user