Title: [172391] trunk/Source/WebCore
Revision
172391
Author
[email protected]
Date
2014-08-11 03:04:32 -0700 (Mon, 11 Aug 2014)

Log Message

[GTK] Fix debug build after r172389.

Patch by Eduardo Lima Mitev <[email protected]> on 2014-08-11
Rubber-stamped by Philippe Normand.

* crypto/gtk/CryptoKeyRSAGtk.cpp:
(WebCore::CryptoKeyRSA::exportData): Remove spurious ASSERT from
stub. It will be added back along with the real implementation of
the method.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (172390 => 172391)


--- trunk/Source/WebCore/ChangeLog	2014-08-11 09:48:06 UTC (rev 172390)
+++ trunk/Source/WebCore/ChangeLog	2014-08-11 10:04:32 UTC (rev 172391)
@@ -1,3 +1,14 @@
+2014-08-11  Eduardo Lima Mitev  <[email protected]>
+
+        [GTK] Fix debug build after r172389.
+
+        Rubber-stamped by Philippe Normand.
+
+        * crypto/gtk/CryptoKeyRSAGtk.cpp:
+        (WebCore::CryptoKeyRSA::exportData): Remove spurious ASSERT from
+        stub. It will be added back along with the real implementation of
+        the method.
+
 2014-08-11  Zan Dobersek  <[email protected]>
 
         Unreviewed fix after r172348.

Modified: trunk/Source/WebCore/crypto/gtk/CryptoKeyRSAGtk.cpp (172390 => 172391)


--- trunk/Source/WebCore/crypto/gtk/CryptoKeyRSAGtk.cpp	2014-08-11 09:48:06 UTC (rev 172390)
+++ trunk/Source/WebCore/crypto/gtk/CryptoKeyRSAGtk.cpp	2014-08-11 10:04:32 UTC (rev 172391)
@@ -93,7 +93,6 @@
 std::unique_ptr<CryptoKeyData> CryptoKeyRSA::exportData() const
 {
     ASSERT(extractable());
-    ASSERT(m_platformKey->pubKey);
 
     notImplemented();
     return nullptr;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to