From 0efb7581f8f53f6d55f237bf90c5962342a313fb Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Sun, 15 May 2022 06:57:16 +0300 Subject: [PATCH] initialize JSC::JSGlobalObject::JSGlobalObjectData members it's fix uninitialized variables o'clock here Signed-off-by: Ivailo Monev --- src/3rdparty/javascriptcore/runtime/JSGlobalObject.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/3rdparty/javascriptcore/runtime/JSGlobalObject.h b/src/3rdparty/javascriptcore/runtime/JSGlobalObject.h index 9a05ce952..229f4577f 100644 --- a/src/3rdparty/javascriptcore/runtime/JSGlobalObject.h +++ b/src/3rdparty/javascriptcore/runtime/JSGlobalObject.h @@ -67,6 +67,9 @@ namespace JSC { : JSVariableObjectData(&symbolTable, 0) , destructor(destructor) , registerArraySize(0) + , next(0) + , prev(0) + , debugger(0) , globalScopeChain(NoScopeChain()) , regExpConstructor(0) , errorConstructor(0) -- 2.11.0