<rdar://problem/
35750689>
The changes in r225264 were meant to have no changes in behavior. However, I mistakenly
switched to a secure coding API call in the PlatformPasteboard::write method. This should
have used the 'insecure' version of this function.
* platform/ios/PlatformPasteboardIOS.mm:
(WebCore::PlatformPasteboard::write):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@225276
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2017-11-29 Brent Fulgham <bfulgham@apple.com>
+
+ Unreviewed test fix after r225264.
+ <rdar://problem/35750689>
+
+ The changes in r225264 were meant to have no changes in behavior. However, I mistakenly
+ switched to a secure coding API call in the PlatformPasteboard::write method. This should
+ have used the 'insecure' version of this function.
+
+ * platform/ios/PlatformPasteboardIOS.mm:
+ (WebCore::PlatformPasteboard::write):
+
2017-11-29 Youenn Fablet <youenn@apple.com>
LibWebRTCPeerConnectionBackend should clean its stats promises when being cleaned
[representationsToRegister addData:content.dataInWebArchiveFormat->createNSData().get() forType:WebArchivePboardType];
if (content.dataInAttributedStringFormat) {
- NSAttributedString *attributedString = securelyUnarchiveObjectOfClassFromData([NSAttributedString class], content.dataInAttributedStringFormat->createNSData().get());
+ NSAttributedString *attributedString = insecurelyUnarchiveObjectOfClassFromData(content.dataInAttributedStringFormat->createNSData().get());
if (attributedString)
[representationsToRegister addRepresentingObject:attributedString];
}