Title: [233875] trunk/Source/WebCore
- Revision
- 233875
- Author
- jiewen_...@apple.com
- Date
- 2018-07-16 18:03:20 -0700 (Mon, 16 Jul 2018)
Log Message
Unreviewed, build fix for r233873.
* crypto/SubtleCrypto.cpp:
(WebCore::crossThreadCopyImportParams):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (233874 => 233875)
--- trunk/Source/WebCore/ChangeLog 2018-07-17 00:54:46 UTC (rev 233874)
+++ trunk/Source/WebCore/ChangeLog 2018-07-17 01:03:20 UTC (rev 233875)
@@ -1,3 +1,10 @@
+2018-07-16 Jiewen Tan <jiewen_...@apple.com>
+
+ Unreviewed, build fix for r233873.
+
+ * crypto/SubtleCrypto.cpp:
+ (WebCore::crossThreadCopyImportParams):
+
2018-07-15 Jiewen Tan <jiewen_...@apple.com>
[WebCrypto] Crypto operations should copy their parameters before hoping to another thread
Modified: trunk/Source/WebCore/crypto/SubtleCrypto.cpp (233874 => 233875)
--- trunk/Source/WebCore/crypto/SubtleCrypto.cpp 2018-07-17 00:54:46 UTC (rev 233874)
+++ trunk/Source/WebCore/crypto/SubtleCrypto.cpp 2018-07-17 01:03:20 UTC (rev 233875)
@@ -520,7 +520,7 @@
{
switch (importParams.parametersClass()) {
case CryptoAlgorithmParameters::Class::None: {
- auto result = std::make_unique<CryptoAlgorithmRsaHashedImportParams>();
+ auto result = std::make_unique<CryptoAlgorithmParameters>();
result->identifier = importParams.identifier;
return result;
}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes