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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:38:04 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 553fdee329e083f3cc9334481ba5c8ab8912bd2c
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 11 15:41:43 2002 +0000

    	Fixed: 3048158 - Crash at google in _destroyInitializingClassList
    
            * WebView.subproj/WebMainResourceClient.m:
            (-[WebMainResourceClient didCancelWithHandle:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2031 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 1caf251..e614874 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-09-11  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3048158 - Crash at google in _destroyInitializingClassList
+
+        * WebView.subproj/WebMainResourceClient.m:
+        (-[WebMainResourceClient didCancelWithHandle:]):
+
 2002-09-10  Richard Williamson (Local)  <rjw at apple.com>
 
         Renamed method.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 1caf251..e614874 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-09-11  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3048158 - Crash at google in _destroyInitializingClassList
+
+        * WebView.subproj/WebMainResourceClient.m:
+        (-[WebMainResourceClient didCancelWithHandle:]):
+
 2002-09-10  Richard Williamson (Local)  <rjw at apple.com>
 
         Renamed method.
diff --git a/WebKit/WebView.subproj/WebMainResourceClient.m b/WebKit/WebView.subproj/WebMainResourceClient.m
index 076640b..2c0e3c5 100644
--- a/WebKit/WebView.subproj/WebMainResourceClient.m
+++ b/WebKit/WebView.subproj/WebMainResourceClient.m
@@ -130,10 +130,9 @@
     [self retain];
     
     // FIXME: Maybe we should be passing the URL from the handle here, not from the dataSource.
-    WebError *error = [WebError errorWithCode:WebResultCancelled
-                                     inDomain:WebErrorDomainWebFoundation
-                                   failingURL:[[dataSource originalURL] absoluteString]];
-    
+    WebError *error = [[WebError alloc] initWithErrorCode:WebResultCancelled
+                                                 inDomain:WebErrorDomainWebFoundation
+                                               failingURL:[[dataSource originalURL] absoluteString]];
     [self receivedError:error forHandle:handle];
     [error release];
 
diff --git a/WebKit/WebView.subproj/WebMainResourceLoader.m b/WebKit/WebView.subproj/WebMainResourceLoader.m
index 076640b..2c0e3c5 100644
--- a/WebKit/WebView.subproj/WebMainResourceLoader.m
+++ b/WebKit/WebView.subproj/WebMainResourceLoader.m
@@ -130,10 +130,9 @@
     [self retain];
     
     // FIXME: Maybe we should be passing the URL from the handle here, not from the dataSource.
-    WebError *error = [WebError errorWithCode:WebResultCancelled
-                                     inDomain:WebErrorDomainWebFoundation
-                                   failingURL:[[dataSource originalURL] absoluteString]];
-    
+    WebError *error = [[WebError alloc] initWithErrorCode:WebResultCancelled
+                                                 inDomain:WebErrorDomainWebFoundation
+                                               failingURL:[[dataSource originalURL] absoluteString]];
     [self receivedError:error forHandle:handle];
     [error release];
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list