From f284d73ccece0490b4a227c788b9415a59a38d9c Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Sat, 5 Aug 2017 00:03:52 +0200 Subject: Avoid creating a separate Scope in the ExecutionContextSaver There's no reason this class should create a scope on it's own. Change-Id: I93bddea8be42a908a1aca1bcb0ec867aae0d29f8 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4globalobject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qml/jsruntime/qv4globalobject.cpp') diff --git a/src/qml/jsruntime/qv4globalobject.cpp b/src/qml/jsruntime/qv4globalobject.cpp index dab6de572d..69d9683eaa 100644 --- a/src/qml/jsruntime/qv4globalobject.cpp +++ b/src/qml/jsruntime/qv4globalobject.cpp @@ -344,7 +344,7 @@ ReturnedValue EvalFunction::evalCall(CallData *callData, bool directCall) const ExecutionEngine *v4 = engine(); Scope scope(v4); - ExecutionContextSaver ctxSaver(scope); + ExecutionContextSaver ctxSaver(scope.engine); ExecutionContext *currentContext = v4->currentContext; ExecutionContext *ctx = currentContext; -- cgit v1.2.3