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

andersca at apple.com andersca at apple.com
Wed Dec 22 11:17:23 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 13b14be5995486763df5cc7895ba878ccbca05f4
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 16 20:46:54 2010 +0000

    Fix release build.
    
    * storage/Database.cpp:
    (WebCore::DerefContextTask::performTask):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63577 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index cb824cf..4353546 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2010-07-16  Anders Carlsson  <andersca at apple.com>
+
+        Fix release build.
+
+        * storage/Database.cpp:
+        (WebCore::DerefContextTask::performTask):
+
 2010-07-16  Simon Fraser  <simon.fraser at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebCore/storage/Database.cpp b/WebCore/storage/Database.cpp
index 5e271bd..69f5036 100644
--- a/WebCore/storage/Database.cpp
+++ b/WebCore/storage/Database.cpp
@@ -147,7 +147,7 @@ public:
 
     virtual void performTask(ScriptExecutionContext* context)
     {
-        ASSERT(context == m_context);
+        ASSERT_UNUSED(context, context == m_context);
         m_context.clear();
     }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list