[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

yong.li at torchmobile.com yong.li at torchmobile.com
Thu Oct 29 20:36:36 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 9c89fdba14828c1324d17881c5ef3a89f9258805
Author: yong.li at torchmobile.com <yong.li at torchmobile.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 30 01:07:29 2009 +0000

    2009-09-29  Yong Li  <yong.li at torchmobile.com>
    
            Reviewed by Darin Adler.
    
            Add an ASSERT for UTF8Encoding().isValid()
            https://bugs.webkit.org/show_bug.cgi?id=29908
    
            * platform/text/TextEncoding.cpp:
            (WebCore::UTF8Encoding):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@48913 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b6af09b..2bf6c69 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2009-09-29  Yong Li  <yong.li at torchmobile.com>
+
+        Reviewed by Darin Adler.
+
+        Add an ASSERT for UTF8Encoding().isValid()
+        https://bugs.webkit.org/show_bug.cgi?id=29908
+
+        * platform/text/TextEncoding.cpp:
+        (WebCore::UTF8Encoding):
+
 2009-09-29  Dave Hyatt  <hyatt at apple.com>
 
         Reviewed by Jon Honeycutt.
diff --git a/WebCore/platform/text/TextEncoding.cpp b/WebCore/platform/text/TextEncoding.cpp
index b76f739..c5c8cfd 100644
--- a/WebCore/platform/text/TextEncoding.cpp
+++ b/WebCore/platform/text/TextEncoding.cpp
@@ -264,6 +264,7 @@ const TextEncoding& UTF32LittleEndianEncoding()
 const TextEncoding& UTF8Encoding()
 {
     static TextEncoding globalUTF8Encoding("UTF-8");
+    ASSERT(globalUTF8Encoding.isValid());
     return globalUTF8Encoding;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list