[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:27:30 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit de01dae0606432e52bd90649f09fddae3a8845f5
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 5 16:19:44 2003 +0000

            Reviewed by John.
    
            - fixed 3189442 -- REGRESSION: utf-16-little-endian.html crashes making decoder
    
            * kwq/KWQCharsets.mm: (encodingNameHash): Re-add tolower call to hash function to
            match the equality function.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3752 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 22eb0ed..1a47832 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2003-03-05  Darin Adler  <darin at apple.com>
+
+        Reviewed by John.
+
+        - fixed 3189442 -- REGRESSION: utf-16-little-endian.html crashes making decoder
+
+        * kwq/KWQCharsets.mm: (encodingNameHash): Re-add tolower call to hash function to
+        match the equality function.
+
 2003-03-04  Trey Matteson  <trey at apple.com>
 
 	New support for autofill.  We provide a routine that scans backwards in the text
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 22eb0ed..1a47832 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-03-05  Darin Adler  <darin at apple.com>
+
+        Reviewed by John.
+
+        - fixed 3189442 -- REGRESSION: utf-16-little-endian.html crashes making decoder
+
+        * kwq/KWQCharsets.mm: (encodingNameHash): Re-add tolower call to hash function to
+        match the equality function.
+
 2003-03-04  Trey Matteson  <trey at apple.com>
 
 	New support for autofill.  We provide a routine that scans backwards in the text
diff --git a/WebCore/kwq/KWQCharsets.mm b/WebCore/kwq/KWQCharsets.mm
index 8fa53bc..d03d12e 100644
--- a/WebCore/kwq/KWQCharsets.mm
+++ b/WebCore/kwq/KWQCharsets.mm
@@ -124,7 +124,7 @@ static CFHashCode encodingNameHash(const void *value)
         if (!c) {
             break;
         }
-        h += c;
+        h += tolower(c);
 	h += (h << 10); 
 	h ^= (h << 6); 
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list