aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-25 11:53:03 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-28 13:33:19 +0200
commit7872b380063d0497ba62fecfdc92148f1ea947af (patch)
treefeb551ff3e60428b0623603b250136d8b98719d1 /src/qml/jsruntime/qv4engine.cpp
parent4d49787af4ed146636a1b5209f19946988a93863 (diff)
Use SafeValue in more places
Change-Id: Ic15c1419c74f22bd7639ce8746ff11b15240b718 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp2
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);