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

andersca at apple.com andersca at apple.com
Wed Dec 22 18:08:23 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5202bd4ad7477d08c546f4c0604843ec5b9adfb0
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 7 22:31:46 2010 +0000

    Build fix follow up build fix.
    
    * pcre/pcre_ucp_searchfuncs.cpp:
    (jsc_pcre_ucp_othercase):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73467 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index d335935..83cca4f 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-12-07  Anders Carlsson  <andersca at apple.com>
 
+        Build fix follow up build fix.
+
+        * pcre/pcre_ucp_searchfuncs.cpp:
+        (jsc_pcre_ucp_othercase):
+
+2010-12-07  Anders Carlsson  <andersca at apple.com>
+
         Reviewed by Darin Adler.
 
         Fix clang++ build
diff --git a/JavaScriptCore/pcre/pcre_ucp_searchfuncs.cpp b/JavaScriptCore/pcre/pcre_ucp_searchfuncs.cpp
index 5c63c20..d2052b2 100644
--- a/JavaScriptCore/pcre/pcre_ucp_searchfuncs.cpp
+++ b/JavaScriptCore/pcre/pcre_ucp_searchfuncs.cpp
@@ -95,5 +95,5 @@ int jsc_pcre_ucp_othercase(unsigned c)
     int offset = ucp_table[mid].f1 & f1_casemask;
     if (offset & f1_caseneg)
         offset |= f1_caseneg;
-    return !offset ? -1 : c + static_cast<int>(offset);
+    return !offset ? -1 : static_cast<int>(c + offset);
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list