Title: [170328] trunk/Source/WebCore
Revision
170328
Author
[email protected]
Date
2014-06-23 16:12:27 -0700 (Mon, 23 Jun 2014)

Log Message

Fix release build

* Modules/indexeddb/IDBTransactionCoordinator.cpp:
(WebCore::IDBTransactionCoordinator::canRunTransaction):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (170327 => 170328)


--- trunk/Source/WebCore/ChangeLog	2014-06-23 22:38:47 UTC (rev 170327)
+++ trunk/Source/WebCore/ChangeLog	2014-06-23 23:12:27 UTC (rev 170328)
@@ -1,3 +1,10 @@
+2014-06-23  Jeffrey Pfau  <[email protected]>
+
+        Fix release build
+
+        * Modules/indexeddb/IDBTransactionCoordinator.cpp:
+        (WebCore::IDBTransactionCoordinator::canRunTransaction):
+
 2014-06-19  Jeffrey Pfau  <[email protected]>
 
         Database process crashes when multiple transactions attempt to run at once

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBTransactionCoordinator.cpp (170327 => 170328)


--- trunk/Source/WebCore/Modules/indexeddb/IDBTransactionCoordinator.cpp	2014-06-23 22:38:47 UTC (rev 170327)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBTransactionCoordinator.cpp	2014-06-23 23:12:27 UTC (rev 170328)
@@ -145,6 +145,7 @@
     ASSERT_NOT_REACHED();
     return false;
 #else
+    UNUSED_PARAM(transaction);
     return !m_startedTransactions.size();
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to