Title: [198704] trunk/Source/bmalloc
Revision
198704
Author
[email protected]
Date
2016-03-25 17:50:51 -0700 (Fri, 25 Mar 2016)

Log Message

bmalloc: fix an ASSERT on iOS
https://bugs.webkit.org/show_bug.cgi?id=155911

Reviewed by Gavin Barraclough.

* bmalloc/VMAllocate.h:
(bmalloc::vmValidatePhysical): Call through to vmValidatePhysical because
the vmValidate function validates virtual sizes rather than physical
sizes.

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (198703 => 198704)


--- trunk/Source/bmalloc/ChangeLog	2016-03-26 00:21:37 UTC (rev 198703)
+++ trunk/Source/bmalloc/ChangeLog	2016-03-26 00:50:51 UTC (rev 198704)
@@ -1,5 +1,17 @@
 2016-03-25  Geoffrey Garen  <[email protected]>
 
+        bmalloc: fix an ASSERT on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=155911
+
+        Reviewed by Gavin Barraclough.
+
+        * bmalloc/VMAllocate.h:
+        (bmalloc::vmValidatePhysical): Call through to vmValidatePhysical because
+        the vmValidate function validates virtual sizes rather than physical
+        sizes.
+
+2016-03-25  Geoffrey Garen  <[email protected]>
+
         bmalloc: support physical page sizes that don't match the virtual page size
         https://bugs.webkit.org/show_bug.cgi?id=155898
 

Modified: trunk/Source/bmalloc/bmalloc/VMAllocate.h (198703 => 198704)


--- trunk/Source/bmalloc/bmalloc/VMAllocate.h	2016-03-26 00:21:37 UTC (rev 198703)
+++ trunk/Source/bmalloc/bmalloc/VMAllocate.h	2016-03-26 00:50:51 UTC (rev 198704)
@@ -95,7 +95,7 @@
 
 inline void vmValidatePhysical(void* p, size_t vmSize)
 {
-    vmValidate(vmSize);
+    vmValidatePhysical(vmSize);
     
     UNUSED(p);
     BASSERT(p);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to