Show
Ignore:
Timestamp:
08/20/08 13:23:52 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35853

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/API/JSCallbackFunction.cpp

    r440 r447  
    3333#include "FunctionPrototype.h" 
    3434#include <kjs/JSGlobalObject.h> 
     35#include <kjs/JSLock.h> 
    3536#include <wtf/Vector.h> 
    3637 
     
    6566        arguments[i] = toRef(args.at(exec, i)); 
    6667 
     68    JSLock::DropAllLocks dropAllLocks(exec); 
    6769    return toJS(static_cast<JSCallbackFunction*>(functionObject)->m_callback(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), toRef(exec->exceptionSlot()))); 
    6870}