summaryrefslogtreecommitdiffstats
path: root/src/script/qscriptengine_p.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/qscriptengine_p.cpp')
-rw-r--r--src/script/qscriptengine_p.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/qscriptengine_p.cpp b/src/script/qscriptengine_p.cpp
index ffb5a27..4ac4403 100644
--- a/src/script/qscriptengine_p.cpp
+++ b/src/script/qscriptengine_p.cpp
@@ -1711,6 +1711,8 @@ QScriptEnginePrivate::QScriptEnginePrivate()
m_maxCallDepth = 640;
#elif defined(QT_ARCH_ARM) || defined(QT_ARCH_ARMV6)
m_maxCallDepth = 360;
+#elif defined(Q_OS_SYMBIAN)
+ m_maxCallDepth = 128; //stack size limitation of 80k, has headroom for other stack vars.
#else
m_maxCallDepth = 512;
#endif