diff options
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp index 62738c23bf..1721e59abb 100644 --- a/src/qml/jsruntime/qv4engine.cpp +++ b/src/qml/jsruntime/qv4engine.cpp @@ -121,7 +121,7 @@ ExecutionEngine::ExecutionEngine(QQmlJS::EvalISelFactory *factory) // reserve 8MB for the JS stack *jsStack = WTF::PageAllocation::allocate(8*1024*1024, WTF::OSAllocator::JSVMStackPages, true); - jsStackBase = (Value *)jsStack->base(); + jsStackBase = (SafeValue *)jsStack->base(); jsStackTop = jsStackBase; identifierTable = new IdentifierTable(this); |