Title: [197965] trunk/Source/WebKit2
Revision
197965
Author
achristen...@apple.com
Date
2016-03-10 15:54:47 -0800 (Thu, 10 Mar 2016)

Log Message

Remove firing assertion after r197865.
https://bugs.webkit.org/show_bug.cgi?id=155137
rdar://problem/25096835

* NetworkProcess/cocoa/NetworkSessionCocoa.mm:
(-[WKNetworkSessionDelegate URLSession:dataTask:didReceiveResponse:completionHandler:]):
(-[WKNetworkSessionDelegate URLSession:dataTask:didReceiveData:]):
This assertion was firing.  I'm looking into why.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (197964 => 197965)


--- trunk/Source/WebKit2/ChangeLog	2016-03-10 23:50:20 UTC (rev 197964)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-10 23:54:47 UTC (rev 197965)
@@ -1,3 +1,14 @@
+2016-03-10  Alex Christensen  <achristen...@webkit.org>
+
+        Remove firing assertion after r197865.
+        https://bugs.webkit.org/show_bug.cgi?id=155137
+        rdar://problem/25096835
+
+        * NetworkProcess/cocoa/NetworkSessionCocoa.mm:
+        (-[WKNetworkSessionDelegate URLSession:dataTask:didReceiveResponse:completionHandler:]):
+        (-[WKNetworkSessionDelegate URLSession:dataTask:didReceiveData:]):
+        This assertion was firing.  I'm looking into why.
+
 2016-03-07  Jer Noble  <jer.no...@apple.com>
 
         Add separate WK and WK2 preferences for requiring user gestures for video media, distinct from user gestures for media generally

Modified: trunk/Source/WebKit2/NetworkProcess/cocoa/NetworkSessionCocoa.mm (197964 => 197965)


--- trunk/Source/WebKit2/NetworkProcess/cocoa/NetworkSessionCocoa.mm	2016-03-10 23:50:20 UTC (rev 197964)
+++ trunk/Source/WebKit2/NetworkProcess/cocoa/NetworkSessionCocoa.mm	2016-03-10 23:54:47 UTC (rev 197965)
@@ -188,10 +188,8 @@
             completionHandlerCopy(toNSURLSessionResponseDisposition(policyAction));
             Block_release(completionHandlerCopy);
         });
-    } else {
-        ASSERT_NOT_REACHED();
+    } else
         completionHandler(NSURLSessionResponseCancel);
-    }
 }
 
 - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to