[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

jorlow at chromium.org jorlow at chromium.org
Wed Dec 22 11:27:52 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9942e67f1dee85b779e4ea57383d402fc9bb5dbf
Author: jorlow at chromium.org <jorlow at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 26 14:49:37 2010 +0000

    2010-07-26  Jeremy Orlow  <jorlow at chromium.org>
    
            Reviewed by Steve Block.
    
            Fix IndexedDB release build on mac
            https://bugs.webkit.org/show_bug.cgi?id=42377
    
            * storage/IDBDatabaseImpl.cpp:
            (WebCore::IDBDatabaseImpl::objectStore):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64045 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index e26d185..8e9c525 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-07-26  Jeremy Orlow  <jorlow at chromium.org>
+
+        Reviewed by Steve Block.
+
+        Fix IndexedDB release build on mac
+        https://bugs.webkit.org/show_bug.cgi?id=42377
+
+        * storage/IDBDatabaseImpl.cpp:
+        (WebCore::IDBDatabaseImpl::objectStore):
+
 2010-07-26  Satish Sampath  <satish at chromium.org>
 
         Reviewed by Steve Block.
diff --git a/WebCore/storage/IDBDatabaseImpl.cpp b/WebCore/storage/IDBDatabaseImpl.cpp
index 712830a..162efab 100644
--- a/WebCore/storage/IDBDatabaseImpl.cpp
+++ b/WebCore/storage/IDBDatabaseImpl.cpp
@@ -68,7 +68,7 @@ void IDBDatabaseImpl::createObjectStore(const String& name, const String& keyPat
 PassRefPtr<IDBObjectStore> IDBDatabaseImpl::objectStore(const String& name, unsigned short mode)
 {
     // FIXME: If no transaction is running, this should implicitly start one.
-    ASSERT(!mode); // FIXME: Handle non-standard modes.
+    ASSERT_UNUSED(mode, !mode); // FIXME: Handle non-standard modes.
     return m_objectStores.get(name);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list