Title: [258601] branches/safari-609-branch/Source/WebKit
Revision
258601
Author
[email protected]
Date
2020-03-17 14:56:33 -0700 (Tue, 17 Mar 2020)

Log Message

Apply patch. rdar://problem/60363244

    Crash in com.apple.WebKit.WebContent at WebKit::WebSWClientConnection::scheduleJobInServer <rdar://problem/60363244>

    Patch by Youenn Fablet <[email protected]> on 2020-03-13
    Reviewed by David Kilzer.

    * WebProcess/Storage/WebSWClientConnection.cpp:
    (WebKit::WebSWClientConnection::scheduleJobInServer):
    - Revert branch commit r256687.  This RELEASE_ASSERT() was
      removed on trunk as part of r256578 (which was merged to this
      branch in r256680, then added back in r256687).

Modified Paths

Diff

Modified: branches/safari-609-branch/Source/WebKit/ChangeLog (258600 => 258601)


--- branches/safari-609-branch/Source/WebKit/ChangeLog	2020-03-17 21:36:41 UTC (rev 258600)
+++ branches/safari-609-branch/Source/WebKit/ChangeLog	2020-03-17 21:56:33 UTC (rev 258601)
@@ -1,5 +1,33 @@
 2020-03-17  Kocsen Chung  <[email protected]>
 
+        Apply patch. rdar://problem/60363244
+
+    Crash in com.apple.WebKit.WebContent at WebKit::WebSWClientConnection::scheduleJobInServer <rdar://problem/60363244>
+    
+    Patch by Youenn Fablet <[email protected]> on 2020-03-13
+    Reviewed by David Kilzer.
+    
+    * WebProcess/Storage/WebSWClientConnection.cpp:
+    (WebKit::WebSWClientConnection::scheduleJobInServer):
+    - Revert branch commit r256687.  This RELEASE_ASSERT() was
+      removed on trunk as part of r256578 (which was merged to this
+      branch in r256680, then added back in r256687).
+
+    2020-03-13  Youenn Fablet  <[email protected]>
+
+            Crash in com.apple.WebKit.WebContent at WebKit::WebSWClientConnection::scheduleJobInServer
+            <rdar://problem/60363244>
+
+            Reviewed by David Kilzer.
+
+            * WebProcess/Storage/WebSWClientConnection.cpp:
+            (WebKit::WebSWClientConnection::scheduleJobInServer):
+            - Revert branch commit r256687.  This RELEASE_ASSERT() was
+              removed on trunk as part of r256578 (which was merged to this
+              branch in r256680, then added back in r256687).
+
+2020-03-17  Kocsen Chung  <[email protected]>
+
         Apply patch. rdar://problem/60500511
 
     2020-03-17  David Kilzer  <[email protected]>

Modified: branches/safari-609-branch/Source/WebKit/WebProcess/Storage/WebSWClientConnection.cpp (258600 => 258601)


--- branches/safari-609-branch/Source/WebKit/WebProcess/Storage/WebSWClientConnection.cpp	2020-03-17 21:36:41 UTC (rev 258600)
+++ branches/safari-609-branch/Source/WebKit/WebProcess/Storage/WebSWClientConnection.cpp	2020-03-17 21:56:33 UTC (rev 258601)
@@ -73,7 +73,6 @@
 
 void WebSWClientConnection::scheduleJobInServer(const ServiceWorkerJobData& jobData)
 {
-    RELEASE_ASSERT(!jobData.scopeURL.isNull());
     runOrDelayTaskForImport([this, jobData] {
         send(Messages::WebSWServerConnection::ScheduleJobInServer { jobData });
     });
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to