Title: [158383] trunk/Source/WebCore
Revision
158383
Author
[email protected]
Date
2013-10-31 12:17:45 -0700 (Thu, 31 Oct 2013)

Log Message

REGRESSION(r158348): Breaks Debug build
https://bugs.webkit.org/show_bug.cgi?id=123562

Patch by Sudarsana Nagineni <[email protected]> on 2013-10-31
Reviewed by Brady Eidson.

Remove an unnecessary check that cause compilation failure.

No new tests since this just fixes the build failure.

* Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp:
(WebCore::IDBBackingStoreLevelDB::updateIDBDatabaseVersion):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (158382 => 158383)


--- trunk/Source/WebCore/ChangeLog	2013-10-31 19:16:57 UTC (rev 158382)
+++ trunk/Source/WebCore/ChangeLog	2013-10-31 19:17:45 UTC (rev 158383)
@@ -1,3 +1,17 @@
+2013-10-31  Sudarsana Nagineni  <[email protected]>
+
+        REGRESSION(r158348): Breaks Debug build
+        https://bugs.webkit.org/show_bug.cgi?id=123562
+
+        Reviewed by Brady Eidson.
+
+        Remove an unnecessary check that cause compilation failure.
+
+        No new tests since this just fixes the build failure.
+
+        * Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp:
+        (WebCore::IDBBackingStoreLevelDB::updateIDBDatabaseVersion):
+
 2013-10-31  Csaba Osztrogonác  <[email protected]>
 
         One more speculative buildfix after r158365.

Modified: trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp (158382 => 158383)


--- trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp	2013-10-31 19:16:57 UTC (rev 158382)
+++ trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp	2013-10-31 19:17:45 UTC (rev 158383)
@@ -596,7 +596,6 @@
 {
     if (version == IDBDatabaseMetadata::NoIntVersion)
         version = IDBDatabaseMetadata::DefaultIntVersion;
-    ASSERT_WITH_MESSAGE(version >= 0, "version was %llu", static_cast<unsigned long long>(version));
     putVarInt(Transaction::levelDBTransactionFrom(transaction), DatabaseMetaDataKey::encode(rowId, DatabaseMetaDataKey::UserIntVersion), version);
     return true;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to