* Do not free temp objects in callback: webassembly code may save them

This commit is contained in:
Michael Van Canneyt 2024-06-19 15:44:20 +02:00
parent 462adf9277
commit 86ac1eaf30

View File

@ -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}