mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 07:48:59 +02:00
* Do not free temp objects in callback: webassembly code may save them
This commit is contained in:
parent
462adf9277
commit
86ac1eaf30
@ -951,7 +951,8 @@ begin
|
||||
View.setUint8(p,JOBArgObject);
|
||||
inc(p);
|
||||
NewId:=RegisterLocalObject(TJSObject(Arg));
|
||||
TJSArray(TempObjIds).push(NewId);
|
||||
// Do not free these objects after the call, as they may be saved by the webassembly
|
||||
// TJSArray(TempObjIds).push(NewId);
|
||||
{$IFDEF VERBOSEJOB}
|
||||
writeln('TJSObjectBridge.CreateCallbackArgs Object ID=',NewID);
|
||||
{$ENDIF}
|
||||
|
Loading…
Reference in New Issue
Block a user