Title: [175275] trunk/Source/WebKit2
Revision
175275
Author
m...@apple.com
Date
2014-10-28 15:15:16 -0700 (Tue, 28 Oct 2014)

Log Message

Added a Radar reference to a comment.

* Shared/mac/WebCoreArgumentCodersMac.mm:
(IPC::ArgumentCoder<Credential>::encodePlatformData):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (175274 => 175275)


--- trunk/Source/WebKit2/ChangeLog	2014-10-28 22:14:45 UTC (rev 175274)
+++ trunk/Source/WebKit2/ChangeLog	2014-10-28 22:15:16 UTC (rev 175275)
@@ -1,5 +1,12 @@
 2014-10-28  Dan Bernstein  <m...@apple.com>
 
+        Added a Radar reference to a comment.
+
+        * Shared/mac/WebCoreArgumentCodersMac.mm:
+        (IPC::ArgumentCoder<Credential>::encodePlatformData):
+
+2014-10-28  Dan Bernstein  <m...@apple.com>
+
         [Cocoa] REGERESSION (r171801): Client certificate authentication is failing
         https://bugs.webkit.org/show_bug.cgi?id=138144
 

Modified: trunk/Source/WebKit2/Shared/mac/WebCoreArgumentCodersMac.mm (175274 => 175275)


--- trunk/Source/WebKit2/Shared/mac/WebCoreArgumentCodersMac.mm	2014-10-28 22:14:45 UTC (rev 175274)
+++ trunk/Source/WebKit2/Shared/mac/WebCoreArgumentCodersMac.mm	2014-10-28 22:15:16 UTC (rev 175275)
@@ -283,7 +283,8 @@
 void ArgumentCoder<Credential>::encodePlatformData(ArgumentEncoder& encoder, const Credential& credential)
 {
     NSURLCredential *nsCredential = credential.nsCredential();
-    // NSURLCredential doesn't serialize identities correctly, so we encode the pieces individually in the identity case.
+    // NSURLCredential doesn't serialize identities correctly, so we encode the pieces individually
+    // in the identity case. See <rdar://problem/18802434>.
     if (SecIdentityRef identity = nsCredential.identity) {
         encoder << true;
         IPC::encode(encoder, identity);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to