[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

ggaren at apple.com ggaren at apple.com
Thu Apr 8 02:16:14 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 55a4e43f118fad0e6fec3925f369729e00899408
Author: ggaren at apple.com <ggaren at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Mar 9 05:15:52 2010 +0000

    Windows build fix: 'P' is not a type. Luckily, 'void' is.
    
    * wtf/FastMalloc.cpp:
    (WTF::fastCheckConsistency):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55708 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 2d78d92..df04336 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-03-08  Geoffrey Garen  <ggaren at apple.com>
 
+        Windows build fix: 'P' is not a type. Luckily, 'void' is.
+
+        * wtf/FastMalloc.cpp:
+        (WTF::fastCheckConsistency):
+
+2010-03-08  Geoffrey Garen  <ggaren at apple.com>
+
         Windows build fix: export a new symbol.
 
         * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
diff --git a/JavaScriptCore/wtf/FastMalloc.cpp b/JavaScriptCore/wtf/FastMalloc.cpp
index 0ec5bbc..a40a9b2 100644
--- a/JavaScriptCore/wtf/FastMalloc.cpp
+++ b/JavaScriptCore/wtf/FastMalloc.cpp
@@ -385,7 +385,7 @@ void fastCheckConsistency(const void* p)
 #if OS(DARWIN)
         ASSERT(malloc_size(p));
 #elif COMPILER(MSVC)
-        ASSERT(_msize(const_cast<P*>(p)));
+        ASSERT(_msize(const_cast<void*>(p)));
 #endif
 #endif
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list