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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 13:34:34 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 7c4e1098a9b53b09784cf18393e91785a410e468
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 20 19:29:35 2010 +0000

    2010-09-20  Peter Varga  <pvarga at inf.u-szeged.hu>
    
            Reviewed by Geoffrey Garen.
    
            REGRESSION(67790): jsc tests are failed with YARR interpreter
            https://bugs.webkit.org/show_bug.cgi?id=46083
    
            Fix the initializing of the lastSubpatternId member of
            parentheses.
    
            * yarr/RegexCompiler.cpp:
            (JSC::Yarr::RegexPatternConstructor::atomParenthesesEnd):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67869 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index c1f3677..622cd09 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-09-20  Peter Varga  <pvarga at inf.u-szeged.hu>
+
+        Reviewed by Geoffrey Garen.
+
+        REGRESSION(67790): jsc tests are failed with YARR interpreter
+        https://bugs.webkit.org/show_bug.cgi?id=46083
+
+        Fix the initializing of the lastSubpatternId member of
+        parentheses.
+
+        * yarr/RegexCompiler.cpp:
+        (JSC::Yarr::RegexPatternConstructor::atomParenthesesEnd):
+
 2010-09-20  Gavin Barraclough  <barraclough at apple.com>
 
         Reviewed by Oliver Hunt.
diff --git a/JavaScriptCore/yarr/RegexCompiler.cpp b/JavaScriptCore/yarr/RegexCompiler.cpp
index 3343792..9f9e028 100644
--- a/JavaScriptCore/yarr/RegexCompiler.cpp
+++ b/JavaScriptCore/yarr/RegexCompiler.cpp
@@ -375,7 +375,7 @@ public:
         PatternDisjunction* parenthesisDisjunction = m_alternative->m_parent;
         m_alternative = m_alternative->m_parent->m_parent;
 
-        PatternTerm lastTerm = m_alternative->lastTerm();
+        PatternTerm& lastTerm = m_alternative->lastTerm();
         
         unsigned numParenAlternatives = parenthesisDisjunction->m_alternatives.size();
         unsigned numBOLAnchoredAlts = 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list