mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-05 05:37:14 +01:00
PascalScript: Fix 64bit initialization. See https://github.com/remobjects/pascalscript/issues/22
git-svn-id: trunk@39480 -
This commit is contained in:
parent
03b80bc7f6
commit
e67589ea6f
@ -1769,7 +1769,8 @@ begin
|
||||
case aType.BaseType of
|
||||
btChar, bts8, btU8: tbtu8(p^) := 0;
|
||||
{$IFNDEF PS_NOWIDESTRING}btWideChar, {$ENDIF}bts16, btU16: tbtu16(p^) := 0;
|
||||
btSingle, bts32, btU32,
|
||||
btSingle: TbtSingle(P^) := 0;
|
||||
bts32, btU32: TbtU32(P^) := 0;
|
||||
btPChar, btString, {$IFNDEF PS_NOWIDESTRING}btUnicodeString, btWideString, {$ENDIF}btClass,
|
||||
btInterface, btArray: Pointer(P^) := nil;
|
||||
btPointer:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user