Title: [255093] trunk/Source/WebKit
- Revision
- 255093
- Author
- [email protected]
- Date
- 2020-01-24 13:58:33 -0800 (Fri, 24 Jan 2020)
Log Message
Unreviewed, a build fix after r255056
* UIProcess/WebAuthentication/Mock/MockLocalConnection.mm:
(WebKit::MockLocalConnection::getAttestation const):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (255092 => 255093)
--- trunk/Source/WebKit/ChangeLog 2020-01-24 21:18:58 UTC (rev 255092)
+++ trunk/Source/WebKit/ChangeLog 2020-01-24 21:58:33 UTC (rev 255093)
@@ -1,3 +1,10 @@
+2020-01-24 Jiewen Tan <[email protected]>
+
+ Unreviewed, a build fix after r255056
+
+ * UIProcess/WebAuthentication/Mock/MockLocalConnection.mm:
+ (WebKit::MockLocalConnection::getAttestation const):
+
2020-01-24 Per Arne Vollan <[email protected]>
Unreviewed, rolling out r255050.
Modified: trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockLocalConnection.mm (255092 => 255093)
--- trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockLocalConnection.mm 2020-01-24 21:18:58 UTC (rev 255092)
+++ trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockLocalConnection.mm 2020-01-24 21:58:33 UTC (rev 255093)
@@ -103,7 +103,7 @@
};
OSStatus status = SecItemAdd((__bridge CFDictionaryRef)addQuery, NULL);
if (status) {
- callback(NULL, NULL, [NSError errorWithDomain:@"WebAuthentication" code:status userInfo:@{ NSLocalizedDescriptionKey: adoptNS([NSString stringWithFormat:@"Couldn't add the key to the keychain. %d", status]).get() }]);
+ callback(NULL, NULL, [NSError errorWithDomain:@"WebAuthentication" code:status userInfo:@{ NSLocalizedDescriptionKey: [NSString stringWithFormat:@"Couldn't add the key to the keychain. %d", status] }]);
return;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes