mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:58:06 +02:00
WPO: don't crash on TP-style objects with only abstract virtual methods
This commit is contained in:
parent
2a6fb32974
commit
540807c5c8
@ -706,7 +706,10 @@ unit optvirt;
|
|||||||
defunitclassname(node.def,unitid,classid,classprefix);
|
defunitclassname(node.def,unitid,classid,classprefix);
|
||||||
unitdevirtinfo:=addunitifnew(unitid^);
|
unitdevirtinfo:=addunitifnew(unitid^);
|
||||||
classdevirtinfo:=unitdevirtinfo.addclass(classprefix+classid^,node.instantiated);
|
classdevirtinfo:=unitdevirtinfo.addclass(classprefix+classid^,node.instantiated);
|
||||||
if (node.def.vmtentries.count=0) then
|
{ node.def.vmcallstaticinfo can be nil if the object only has abstract
|
||||||
|
virtual methods }
|
||||||
|
if (node.def.vmtentries.count=0) or
|
||||||
|
not assigned(node.def.vmcallstaticinfo) then
|
||||||
exit;
|
exit;
|
||||||
for i:=0 to node.def.vmtentries.count-1 do
|
for i:=0 to node.def.vmtentries.count-1 do
|
||||||
if (po_virtualmethod in pvmtentry(node.def.vmtentries[i])^.procdef.procoptions) then
|
if (po_virtualmethod in pvmtentry(node.def.vmtentries[i])^.procdef.procoptions) then
|
||||||
|
21
tests/webtbs/tw41077.pp
Normal file
21
tests/webtbs/tw41077.pp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ %wpoparas=optvmts }
|
||||||
|
{ %wpopasses=1 }
|
||||||
|
|
||||||
|
|
||||||
|
program test;
|
||||||
|
|
||||||
|
type
|
||||||
|
PMyObj=^TMyObj;
|
||||||
|
TMyObj = object
|
||||||
|
constructor init;
|
||||||
|
procedure dummy;virtual;abstract;
|
||||||
|
end;
|
||||||
|
|
||||||
|
constructor TMyObj.init;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
begin
|
||||||
|
PMyObj(nil)^.init;
|
||||||
|
end.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user