[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:54:33 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 2a5fc93dba809a9bba3f258cabec4ff450c16d83
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 28 02:50:55 2003 +0000

            Reviewed by John
    
    	- fixed rdar://problem/3397316 - sherlock crash: KJS::Collector::allocate(unsigned long)
    
    	* kjs/internal.cpp:
            (InterpreterImp::InterpreterImp): Hold the lock a bit longer, so
    	the call to initGlobalObject is covered.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4909 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 2069b7b..c9f70eb 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2003-08-27  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by John
+
+	- fixed rdar://problem/3397316 - sherlock crash: KJS::Collector::allocate(unsigned long)
+	
+	* kjs/internal.cpp:
+        (InterpreterImp::InterpreterImp): Hold the lock a bit longer, so
+	the call to initGlobalObject is covered.
+
 === Safari-95 ===
 
 2003-08-24  Darin Adler  <darin at apple.com>
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index 2069b7b..c9f70eb 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-08-27  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by John
+
+	- fixed rdar://problem/3397316 - sherlock crash: KJS::Collector::allocate(unsigned long)
+	
+	* kjs/internal.cpp:
+        (InterpreterImp::InterpreterImp): Hold the lock a bit longer, so
+	the call to initGlobalObject is covered.
+
 === Safari-95 ===
 
 2003-08-24  Darin Adler  <darin at apple.com>
diff --git a/JavaScriptCore/kjs/internal.cpp b/JavaScriptCore/kjs/internal.cpp
index 549be2d..0fa7155 100644
--- a/JavaScriptCore/kjs/internal.cpp
+++ b/JavaScriptCore/kjs/internal.cpp
@@ -523,7 +523,6 @@ InterpreterImp::InterpreterImp(Interpreter *interp, const Object &glob)
     s_hook = next = prev = this;
     globalInit();
   }
-  unlockInterpreter();
 
   global = glob;
   globExec = new ExecState(m_interpreter,0);
@@ -534,6 +533,7 @@ InterpreterImp::InterpreterImp(Interpreter *interp, const Object &glob)
   initGlobalObject();
 
   recursion = 0;
+  unlockInterpreter();
 }
 
 void InterpreterImp::lock()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list