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/JSCallbackConstructor.cpp

    r427 r447  
    3030#include "APICast.h" 
    3131#include <kjs/JSGlobalObject.h> 
     32#include <kjs/JSLock.h> 
    3233#include <kjs/ObjectPrototype.h> 
    3334#include <wtf/Vector.h> 
     
    6970            arguments[i] = toRef(args.at(exec, i)); 
    7071             
     72        JSLock::DropAllLocks dropAllLocks(exec); 
    7173        return toJS(callback(ctx, constructorRef, argumentCount, arguments.data(), toRef(exec->exceptionSlot()))); 
    7274    }