mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 01:01:33 +02:00
Avoid range error in tbitset.clear method
This commit is contained in:
parent
e1478e27b3
commit
04a31f8be2
@ -3258,7 +3258,8 @@ end;
|
||||
|
||||
procedure tbitset.clear;
|
||||
begin
|
||||
fillchar(fdata[0],length(fdata),0);
|
||||
if assigned(fdata) then
|
||||
fillchar(fdata[0],length(fdata),0);
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user