Title: [188657] trunk/Source/WebCore
Revision
188657
Author
ander...@apple.com
Date
2015-08-19 15:33:25 -0700 (Wed, 19 Aug 2015)

Log Message

Fix errors on bots.

Ask the backend to cleanup and terminate

* Modules/webdatabase/SQLTransaction.cpp:
(WebCore::SQLTransaction::computeNextStateAndCleanupIfNeeded):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (188656 => 188657)


--- trunk/Source/WebCore/ChangeLog	2015-08-19 22:33:12 UTC (rev 188656)
+++ trunk/Source/WebCore/ChangeLog	2015-08-19 22:33:25 UTC (rev 188657)
@@ -1,3 +1,12 @@
+2015-08-19  Anders Carlsson  <ander...@apple.com>
+
+        Fix errors on bots.
+
+        Ask the backend to cleanup and terminate
+
+        * Modules/webdatabase/SQLTransaction.cpp:
+        (WebCore::SQLTransaction::computeNextStateAndCleanupIfNeeded):
+
 2015-08-19  Dean Jackson  <d...@apple.com>
 
         Clean up our CSS files (e.g. remove prefixes)

Modified: trunk/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp (188656 => 188657)


--- trunk/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp	2015-08-19 22:33:12 UTC (rev 188656)
+++ trunk/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp	2015-08-19 22:33:25 UTC (rev 188657)
@@ -275,7 +275,7 @@
     }
 
     clearCallbackWrappers();
-    m_nextState = SQLTransactionState::CleanupAndTerminate;
+    m_backend->requestTransitToState(SQLTransactionState::CleanupAndTerminate);
 }
 
 void SQLTransaction::clearCallbackWrappers()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to