Title: [213663] trunk/Source/WebCore
Revision
213663
Author
[email protected]
Date
2017-03-09 13:28:00 -0800 (Thu, 09 Mar 2017)

Log Message

Unreviewed build fix after r213628.

Use 'size_t' for the function definition to match the header file. If you do not,
the 32-bit build fails..

* crypto/gnutls/CryptoAlgorithmECDHGnuTLS.cpp:
(WebCore::CryptoAlgorithmECDH::platformDeriveBits):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (213662 => 213663)


--- trunk/Source/WebCore/ChangeLog	2017-03-09 21:24:36 UTC (rev 213662)
+++ trunk/Source/WebCore/ChangeLog	2017-03-09 21:28:00 UTC (rev 213663)
@@ -1,3 +1,13 @@
+2017-03-09  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix after r213628.
+
+        Use 'size_t' for the function definition to match the header file. If you do not,
+        the 32-bit build fails..
+
+        * crypto/gnutls/CryptoAlgorithmECDHGnuTLS.cpp:
+        (WebCore::CryptoAlgorithmECDH::platformDeriveBits):
+
 2017-03-09  Wenson Hsieh  <[email protected]>
 
         [WK2] Add a UI delegate hook for custom handling of data interaction operations

Modified: trunk/Source/WebCore/crypto/gnutls/CryptoAlgorithmECDHGnuTLS.cpp (213662 => 213663)


--- trunk/Source/WebCore/crypto/gnutls/CryptoAlgorithmECDHGnuTLS.cpp	2017-03-09 21:24:36 UTC (rev 213662)
+++ trunk/Source/WebCore/crypto/gnutls/CryptoAlgorithmECDHGnuTLS.cpp	2017-03-09 21:28:00 UTC (rev 213663)
@@ -32,7 +32,7 @@
 
 namespace WebCore {
 
-void CryptoAlgorithmECDH::platformDeriveBits(Ref<CryptoKey>&&, Ref<CryptoKey>&&, unsigned long, Callback&&, ScriptExecutionContext&, WorkQueue&)
+void CryptoAlgorithmECDH::platformDeriveBits(Ref<CryptoKey>&&, Ref<CryptoKey>&&, size_t, Callback&&, ScriptExecutionContext&, WorkQueue&)
 {
     notImplemented();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to