[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 06:30:12 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6bca498687b11c27cfc46172af23dff3bd4f65de
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 7 20:30:57 2002 +0000

    	- fixed 3017499 -- One-click crasher at hondamotorcycle.com
    
            * kwq/KWQKURL.mm: (operator==): Just compare the strings.
    	Faster and safer.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1771 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 087c958..d2bd846 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-08-07  Darin Adler  <darin at apple.com>
+
+	- fixed 3017499 -- One-click crasher at hondamotorcycle.com
+
+        * kwq/KWQKURL.mm: (operator==): Just compare the strings.
+	Faster and safer.
+
 2002-08-07  Richard Williamson (Home)  <rjw at apple.com>
         
         Removed debug log.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 087c958..d2bd846 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-08-07  Darin Adler  <darin at apple.com>
+
+	- fixed 3017499 -- One-click crasher at hondamotorcycle.com
+
+        * kwq/KWQKURL.mm: (operator==): Just compare the strings.
+	Faster and safer.
+
 2002-08-07  Richard Williamson (Home)  <rjw at apple.com>
         
         Removed debug log.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 087c958..d2bd846 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-08-07  Darin Adler  <darin at apple.com>
+
+	- fixed 3017499 -- One-click crasher at hondamotorcycle.com
+
+        * kwq/KWQKURL.mm: (operator==): Just compare the strings.
+	Faster and safer.
+
 2002-08-07  Richard Williamson (Home)  <rjw at apple.com>
         
         Removed debug log.
diff --git a/WebCore/kwq/KWQKURL.mm b/WebCore/kwq/KWQKURL.mm
index f66b6bb..c67bd55 100644
--- a/WebCore/kwq/KWQKURL.mm
+++ b/WebCore/kwq/KWQKURL.mm
@@ -700,7 +700,5 @@ QString KURL::htmlRef() const
 
 bool operator==(const KURL &a, const KURL &b)
 {
-    a.parse();
-    b.parse();
-    return CFEqual(a.d->urlRef, b.d->urlRef);
+    return a.urlString == b.urlString;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list