Title: [219532] trunk/Source/WebKitLegacy/win
Revision
219532
Author
commit-qu...@webkit.org
Date
2017-07-14 16:03:13 -0700 (Fri, 14 Jul 2017)

Log Message

[Curl] Don't start downloading more than once for same request
https://bugs.webkit.org/show_bug.cgi?id=174172

Patch by Basuke Suzuki <basuke.suz...@sony.com> on 2017-07-14
Reviewed by Alex Christensen.

* WebDownloadCurl.cpp:
(WebDownload::init):

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/win/ChangeLog (219531 => 219532)


--- trunk/Source/WebKitLegacy/win/ChangeLog	2017-07-14 23:02:52 UTC (rev 219531)
+++ trunk/Source/WebKitLegacy/win/ChangeLog	2017-07-14 23:03:13 UTC (rev 219532)
@@ -1,3 +1,13 @@
+2017-07-14  Basuke Suzuki  <basuke.suz...@sony.com>
+
+        [Curl] Don't start downloading more than once for same request
+        https://bugs.webkit.org/show_bug.cgi?id=174172
+
+        Reviewed by Alex Christensen.
+
+        * WebDownloadCurl.cpp:
+        (WebDownload::init):
+
 2017-07-12  Daniel Bates  <daba...@apple.com>
 
         Rename NavigationInitiatedByMainFrame to InitiatedByMainFrame

Modified: trunk/Source/WebKitLegacy/win/WebDownloadCurl.cpp (219531 => 219532)


--- trunk/Source/WebKitLegacy/win/WebDownloadCurl.cpp	2017-07-14 23:02:52 UTC (rev 219531)
+++ trunk/Source/WebKitLegacy/win/WebDownloadCurl.cpp	2017-07-14 23:03:13 UTC (rev 219532)
@@ -65,8 +65,6 @@
 
     m_download = adoptRef(new CurlDownload());
     m_download->init(this, handle, request, response);
-
-    start();
 }
 
 void WebDownload::init(const URL& url, IWebDownloadDelegate* delegate)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to