[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:29:48 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e14c2425f84a7e2601b9989d59abc5a23909f647
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 7 03:39:22 2002 +0000

            * kwq/KWQKHTMLPartImpl.mm: (KWQKHTMLPartImpl::overURL):
    	Fix crash in overURL, another case just like bug 3006336.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1759 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 699f93c..9f79180 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,8 @@
+2002-08-06  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQKHTMLPartImpl.mm: (KWQKHTMLPartImpl::overURL):
+	Fix crash in overURL, another case just like bug 3006336.
+
 2002-08-06  Richard Williamson (Local)  <rjw at apple.com>
 
         Frame resizing related changes.  Frames are now resizable
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 699f93c..9f79180 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,8 @@
+2002-08-06  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQKHTMLPartImpl.mm: (KWQKHTMLPartImpl::overURL):
+	Fix crash in overURL, another case just like bug 3006336.
+
 2002-08-06  Richard Williamson (Local)  <rjw at apple.com>
 
         Frame resizing related changes.  Frames are now resizable
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 699f93c..9f79180 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,8 @@
+2002-08-06  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQKHTMLPartImpl.mm: (KWQKHTMLPartImpl::overURL):
+	Fix crash in overURL, another case just like bug 3006336.
+
 2002-08-06  Richard Williamson (Local)  <rjw at apple.com>
 
         Frame resizing related changes.  Frames are now resizable
diff --git a/WebCore/kwq/KWQKHTMLPart.mm b/WebCore/kwq/KWQKHTMLPart.mm
index ad2a12d..88adf5c 100644
--- a/WebCore/kwq/KWQKHTMLPart.mm
+++ b/WebCore/kwq/KWQKHTMLPart.mm
@@ -415,8 +415,8 @@ void KWQKHTMLPartImpl::overURL( const QString &url, const QString &target, int m
     
     if (u.protocol() == QString("mailto")) {
         // FIXME: addressbook integration? probably not worth it...
-        
-        setStatusBarText(QString::fromNSString([NSString stringWithFormat:@"Send email to %@", KURL::decode_string(u.path()).getNSString()]));
+        const QString address = KURL::decode_string(u.path());
+        setStatusBarText(QString::fromNSString([NSString stringWithFormat:@"Send email to %@", address.getNSString()]));
         return;
     }
     
diff --git a/WebCore/kwq/KWQKHTMLPartImpl.mm b/WebCore/kwq/KWQKHTMLPartImpl.mm
index ad2a12d..88adf5c 100644
--- a/WebCore/kwq/KWQKHTMLPartImpl.mm
+++ b/WebCore/kwq/KWQKHTMLPartImpl.mm
@@ -415,8 +415,8 @@ void KWQKHTMLPartImpl::overURL( const QString &url, const QString &target, int m
     
     if (u.protocol() == QString("mailto")) {
         // FIXME: addressbook integration? probably not worth it...
-        
-        setStatusBarText(QString::fromNSString([NSString stringWithFormat:@"Send email to %@", KURL::decode_string(u.path()).getNSString()]));
+        const QString address = KURL::decode_string(u.path());
+        setStatusBarText(QString::fromNSString([NSString stringWithFormat:@"Send email to %@", address.getNSString()]));
         return;
     }
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list