* Do not crash when module pointer is nil

This commit is contained in:
Michael VAN CANNEYT 2023-03-06 18:45:27 +01:00
parent a8ee66823a
commit e6f71b6acc

View File

@ -3623,8 +3623,9 @@ implementation
var
pmod : tmodule;
begin
pmod:=tmodule(pm);
result:=false;
if not assigned(pm) then exit;
pmod:=tmodule(pm);
if assigned(pmod.globalsymtable) then
begin
srsym:=tsym(pmod.globalsymtable.Find(s));