[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 07:55:22 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit d81988a39f04341dfcfb71a245276fb070fc3c83
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 5 06:07:45 2003 +0000

    	Fixed: <rdar://problem/3316704>: Shockwave: getnetText steam is not functioning correctly
    
            Reviewed by mjs.
    
            * Plugins.subproj/WebBaseNetscapePluginStream.m:
            (-[WebBaseNetscapePluginStream startStreamWithURL:expectedContentLength:lastModifiedDate:MIMEType:]): if the content length is unknown, use 0 instead of -1
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4941 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 5f09272..260f5f9 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,14 @@
 2003-09-04  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: <rdar://problem/3316704>: Shockwave: getnetText steam is not functioning correctly
+
+        Reviewed by mjs.
+
+        * Plugins.subproj/WebBaseNetscapePluginStream.m:
+        (-[WebBaseNetscapePluginStream startStreamWithURL:expectedContentLength:lastModifiedDate:MIMEType:]): if the content length is unknown, use 0 instead of -1
+
+2003-09-04  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: <rdar://problem/3286922>: Shockwave: Using HTTP to stream .mp3 or .swa files fails at ~50%
 
         Reviewed by mjs.
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m
index 7c95bf9..11e5e44 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m
@@ -77,7 +77,7 @@
     stream.URL = strdup([URL _web_URLCString]);
 
     stream.ndata = self;
-    stream.end = expectedContentLength;
+    stream.end = expectedContentLength > 0 ? expectedContentLength : 0;
     stream.lastmodified = [lastModifiedDate timeIntervalSince1970];
     stream.notifyData = notifyData;
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list