Title: [145022] trunk/Source/WTF
Revision
145022
Author
[email protected]
Date
2013-03-06 19:03:05 -0800 (Wed, 06 Mar 2013)

Log Message

Build fix: PageAllocationAligned no longer has executable flag
https://bugs.webkit.org/show_bug.cgi?id=111659

Patch by Adenilson Cavalcanti <[email protected]> on 2013-03-06
Reviewed by Kentaro Hara.

Build fix: use false as parameter to execution flag.

* wtf/PageAllocationAligned.cpp:
(WTF::PageAllocationAligned::allocate):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (145021 => 145022)


--- trunk/Source/WTF/ChangeLog	2013-03-07 02:30:15 UTC (rev 145021)
+++ trunk/Source/WTF/ChangeLog	2013-03-07 03:03:05 UTC (rev 145022)
@@ -1,3 +1,15 @@
+2013-03-06  Adenilson Cavalcanti  <[email protected]>
+
+        Build fix: PageAllocationAligned no longer has executable flag
+        https://bugs.webkit.org/show_bug.cgi?id=111659
+
+        Reviewed by Kentaro Hara.
+
+        Build fix: use false as parameter to execution flag.
+
+        * wtf/PageAllocationAligned.cpp:
+        (WTF::PageAllocationAligned::allocate):
+
 2013-03-06  Eric Seidel  <[email protected]>
 
         AtomicStringImpls are not safe to send between threads

Modified: trunk/Source/WTF/wtf/PageAllocationAligned.cpp (145021 => 145022)


--- trunk/Source/WTF/wtf/PageAllocationAligned.cpp	2013-03-07 02:30:15 UTC (rev 145021)
+++ trunk/Source/WTF/wtf/PageAllocationAligned.cpp	2013-03-07 03:03:05 UTC (rev 145022)
@@ -52,7 +52,7 @@
 
     // Resererve with suffcient additional VM to correctly align.
     size_t reservationSize = size + alignmentDelta;
-    void* reservationBase = OSAllocator::reserveUncommitted(reservationSize, usage, writable, executable);
+    void* reservationBase = OSAllocator::reserveUncommitted(reservationSize, usage, writable, false);
 
     // Select an aligned region within the reservation and commit.
     void* alignedBase = reinterpret_cast<uintptr_t>(reservationBase) & alignmentMask
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to