[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:03:32 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6e9d9853cda3c85d0d39ac4b0e3d31d6ad88042a
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 19 05:07:29 2002 +0000

    	Fixed a horrible leak introduced with my last change that
    	somehow did not show up on my machine.
    
            * kjs/types.cpp:
            (List::List): Mark ListImp as GC allowed.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2747 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 952765f..d28d424 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,13 @@
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
+	Fixed a horrible leak introduced with my last change that
+	somehow did not show up on my machine.
+
+        * kjs/types.cpp:
+        (List::List): Mark ListImp as GC allowed.
+
+2002-11-18  Maciej Stachowiak  <mjs at apple.com>
+
 	Another step towards the List conversion: stop inheriting from Value.
 	
         * kjs/types.cpp:
diff --git a/JavaScriptCore/ChangeLog-2002-12-03 b/JavaScriptCore/ChangeLog-2002-12-03
index 952765f..d28d424 100644
--- a/JavaScriptCore/ChangeLog-2002-12-03
+++ b/JavaScriptCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
+	Fixed a horrible leak introduced with my last change that
+	somehow did not show up on my machine.
+
+        * kjs/types.cpp:
+        (List::List): Mark ListImp as GC allowed.
+
+2002-11-18  Maciej Stachowiak  <mjs at apple.com>
+
 	Another step towards the List conversion: stop inheriting from Value.
 	
         * kjs/types.cpp:
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index 952765f..d28d424 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
+	Fixed a horrible leak introduced with my last change that
+	somehow did not show up on my machine.
+
+        * kjs/types.cpp:
+        (List::List): Mark ListImp as GC allowed.
+
+2002-11-18  Maciej Stachowiak  <mjs at apple.com>
+
 	Another step towards the List conversion: stop inheriting from Value.
 	
         * kjs/types.cpp:
diff --git a/JavaScriptCore/kjs/types.cpp b/JavaScriptCore/kjs/types.cpp
index a658ec6..1361224 100644
--- a/JavaScriptCore/kjs/types.cpp
+++ b/JavaScriptCore/kjs/types.cpp
@@ -172,6 +172,7 @@ List::List(bool needsMarking)
   : m_needsMarking(needsMarking)
 {
   imp = m_needsMarking ? ListImp::empty() : new ListImp();
+  imp->setGcAllowed();
     
   if (!m_needsMarking) {
     imp->ref();
@@ -193,6 +194,7 @@ List::List(ListImp *p_imp)
   : m_needsMarking(false)
 {
   imp = p_imp;
+  imp->setGcAllowed();
 
   if (!m_needsMarking) {
     imp->ref();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list