mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 03:09:54 +01:00
* fixed class messages for PowerPC64, due to a wrong typecast
git-svn-id: trunk@1363 -
This commit is contained in:
parent
cd3f064a33
commit
0b34b01a6d
@ -413,9 +413,9 @@
|
||||
begin
|
||||
// See if we have messages at all in this class.
|
||||
p:=pointer(vmt)+vmtDynamicTable;
|
||||
If Assigned(p) and (Pdword(p)^<>0) then
|
||||
If assigned(PPointer(p)^) then
|
||||
begin
|
||||
msgtable:=pmsgtable(PtrInt(p^)+4);
|
||||
msgtable:=pmsgtable(Pointer(p^)+4);
|
||||
count:=pdword(p^)^;
|
||||
end
|
||||
else
|
||||
|
||||
Loading…
Reference in New Issue
Block a user