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

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:18:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 548223477b4f6111e2dd60ab34989e0edad9576e
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jun 13 16:00:51 2002 +0000

    2002-06-13  Kenneth Kocienda  <kocienda at apple.com>
    
            Fixed uninitialized varible that broke the build.
    
            * WebView.subproj/IFMainURLHandleClient.mm:
            (-[IFMainURLHandleClient IFURLHandle:resourceDataDidBecomeAvailable:])
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1346 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a186d5c..2dd50c0 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-06-13  Kenneth Kocienda  <kocienda at apple.com>
+
+        Fixed uninitialized varible that broke the build.
+
+	* WebView.subproj/IFMainURLHandleClient.mm:
+	(-[IFMainURLHandleClient IFURLHandle:resourceDataDidBecomeAvailable:])
+
 2002-06-13  Richard Williamson  <rjw at apple.com>
 
     Lots of cleanup.  Fixed most regressions.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index a186d5c..2dd50c0 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-06-13  Kenneth Kocienda  <kocienda at apple.com>
+
+        Fixed uninitialized varible that broke the build.
+
+	* WebView.subproj/IFMainURLHandleClient.mm:
+	(-[IFMainURLHandleClient IFURLHandle:resourceDataDidBecomeAvailable:])
+
 2002-06-13  Richard Williamson  <rjw at apple.com>
 
     Lots of cleanup.  Fixed most regressions.
diff --git a/WebKit/WebView.subproj/IFMainURLHandleClient.mm b/WebKit/WebView.subproj/IFMainURLHandleClient.mm
index bdfd8b2..c7058c9 100644
--- a/WebKit/WebView.subproj/IFMainURLHandleClient.mm
+++ b/WebKit/WebView.subproj/IFMainURLHandleClient.mm
@@ -116,7 +116,7 @@
     IFWebFrame *frame = [dataSource webFrame];
     IFWebView *view = [frame view];
     IFContentPolicy contentPolicy;
-    NSData *data;
+    NSData *data = nil;
     
     WEBKITDEBUGLEVEL(WEBKIT_LOG_LOADING, "url = %s, data = %p, length %d\n", DEBUG_OBJECT([sender url]), incomingData, [incomingData length]);
     
diff --git a/WebKit/WebView.subproj/WebMainResourceClient.m b/WebKit/WebView.subproj/WebMainResourceClient.m
index bdfd8b2..c7058c9 100644
--- a/WebKit/WebView.subproj/WebMainResourceClient.m
+++ b/WebKit/WebView.subproj/WebMainResourceClient.m
@@ -116,7 +116,7 @@
     IFWebFrame *frame = [dataSource webFrame];
     IFWebView *view = [frame view];
     IFContentPolicy contentPolicy;
-    NSData *data;
+    NSData *data = nil;
     
     WEBKITDEBUGLEVEL(WEBKIT_LOG_LOADING, "url = %s, data = %p, length %d\n", DEBUG_OBJECT([sender url]), incomingData, [incomingData length]);
     
diff --git a/WebKit/WebView.subproj/WebMainResourceLoader.m b/WebKit/WebView.subproj/WebMainResourceLoader.m
index bdfd8b2..c7058c9 100644
--- a/WebKit/WebView.subproj/WebMainResourceLoader.m
+++ b/WebKit/WebView.subproj/WebMainResourceLoader.m
@@ -116,7 +116,7 @@
     IFWebFrame *frame = [dataSource webFrame];
     IFWebView *view = [frame view];
     IFContentPolicy contentPolicy;
-    NSData *data;
+    NSData *data = nil;
     
     WEBKITDEBUGLEVEL(WEBKIT_LOG_LOADING, "url = %s, data = %p, length %d\n", DEBUG_OBJECT([sender url]), incomingData, [incomingData length]);
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list