[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

eric at webkit.org eric at webkit.org
Wed Dec 22 11:49:08 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f43f4d1e98b29586f69772166b4e5c096d6e314c
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 8 03:55:50 2010 +0000

    2010-08-07  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Eric Seidel.
    
            Add ENABLE(YARR) guard around JSGlobalData::m_regexAllocator
            https://bugs.webkit.org/show_bug.cgi?id=43399
    
            m_regexAllocator is used only by RegExp::compile which is guarded with ENABLE(YARR).
    
            * runtime/JSGlobalData.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64934 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index ddeb291..6bea3a4 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-07  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Eric Seidel.
+
+        Add ENABLE(YARR) guard around JSGlobalData::m_regexAllocator
+        https://bugs.webkit.org/show_bug.cgi?id=43399
+
+        m_regexAllocator is used only by RegExp::compile which is guarded with ENABLE(YARR).
+
+        * runtime/JSGlobalData.h:
+
 2010-08-07  Patrick Roland Gansterer  <paroga at paroga.com>
 
         Reviewed by Eric Seidel.
diff --git a/JavaScriptCore/runtime/JSGlobalData.h b/JavaScriptCore/runtime/JSGlobalData.h
index 63f9ad8..1928f77 100644
--- a/JavaScriptCore/runtime/JSGlobalData.h
+++ b/JavaScriptCore/runtime/JSGlobalData.h
@@ -220,7 +220,9 @@ namespace JSC {
 
         RegExpCache* m_regExpCache;
 
+#if ENABLE(YARR)
         BumpPointerAllocator m_regexAllocator;
+#endif
 
 #ifndef NDEBUG
         ThreadIdentifier exclusiveThread;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list