diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-06 14:46:43 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-10-07 03:03:39 (GMT) |
commit | e217acd793f6ebefaba8534e2a2e50ded203da9c (patch) | |
tree | 211edee44349cc2a40024c3d9b8d9f543565ac96 /src/script/api/qscriptengine.cpp | |
parent | 228cb95786d3362467ac9870dafd9e1d1df20480 (diff) | |
download | Qt-e217acd793f6ebefaba8534e2a2e50ded203da9c.zip Qt-e217acd793f6ebefaba8534e2a2e50ded203da9c.tar.gz Qt-e217acd793f6ebefaba8534e2a2e50ded203da9c.tar.bz2 |
QScriptContext::parentContext: don't skip unessecary frames
Calling QScriptValue::call doesn't create a fake frame.
We can detect a real fake frame as it does not have a callee.
Task-number: QT-2270
Reviewed-by: Kent Hansen
(cherry picked from commit 96b047f0f27674ee402ab3624dbb906346ac1847)
Diffstat (limited to 'src/script/api/qscriptengine.cpp')
-rw-r--r-- | src/script/api/qscriptengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/api/qscriptengine.cpp b/src/script/api/qscriptengine.cpp index 863ac30..b1f36be 100644 --- a/src/script/api/qscriptengine.cpp +++ b/src/script/api/qscriptengine.cpp @@ -993,7 +993,7 @@ void QScriptEnginePrivate::setDefaultPrototype(int metaTypeId, JSC::JSValue prot QScriptContext *QScriptEnginePrivate::contextForFrame(JSC::ExecState *frame) { - if (frame && frame->callerFrame()->hasHostCallFrameFlag() + if (frame && frame->callerFrame()->hasHostCallFrameFlag() && !frame->callee() && frame->callerFrame()->removeHostCallFrameFlag() == QScript::scriptEngineFromExec(frame)->globalExec()) { //skip the "fake" context created in Interpreter::execute. frame = frame->callerFrame()->removeHostCallFrameFlag(); |