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

barraclough at apple.com barraclough at apple.com
Wed Dec 22 11:43:26 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit fae7afcd926b64842855be7d549de32ab6cfb666
Author: barraclough at apple.com <barraclough at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 5 01:19:26 2010 +0000

    Windows build fix part II.
    
    * wtf/PageReservation.h:
    (WTF::PageReservation::systemReserve):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64703 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 62ca10c..5c6d6c5 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-08-04  Gavin Barraclough  <barraclough at apple.com>
 
+        Windows build fix part II.
+
+        * wtf/PageReservation.h:
+        (WTF::PageReservation::systemReserve):
+
+2010-08-04  Gavin Barraclough  <barraclough at apple.com>
+
         Windows build fix.
 
         * wtf/PageReservation.h:
diff --git a/JavaScriptCore/wtf/PageReservation.h b/JavaScriptCore/wtf/PageReservation.h
index 78f76e3..f4ecfdd 100644
--- a/JavaScriptCore/wtf/PageReservation.h
+++ b/JavaScriptCore/wtf/PageReservation.h
@@ -218,7 +218,7 @@ inline PageReservation PageReservation::systemReserve(size_t size, Usage usage,
     DWORD protection = executable ?
         (writable ? PAGE_EXECUTE_READWRITE : PAGE_EXECUTE_READ) :
         (writable ? PAGE_READWRITE : PAGE_READONLY);
-    PageReservation reservation(VirtualAlloc(0, size, MEM_RESERVE, m_protection), size);
+    PageReservation reservation(VirtualAlloc(0, size, MEM_RESERVE, protection), size);
     reservation.m_protection = protection;
     return reservation;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list