Title: [181180] trunk/Source/WTF
Revision
181180
Author
gga...@apple.com
Date
2015-03-06 14:01:58 -0800 (Fri, 06 Mar 2015)

Log Message

2015-03-06  Geoffrey Garen  <gga...@apple.com>

        Fix crashes seen on the the Windows buildbots after my last patch.

        Unreviewed.

        * wtf/FastMalloc.cpp:
        (WTF::fastAlignedMalloc): Let's pass these arguments in the right order.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (181179 => 181180)


--- trunk/Source/WTF/ChangeLog	2015-03-06 21:31:27 UTC (rev 181179)
+++ trunk/Source/WTF/ChangeLog	2015-03-06 22:01:58 UTC (rev 181180)
@@ -1,3 +1,12 @@
+2015-03-06  Geoffrey Garen  <gga...@apple.com>
+
+        Fix crashes seen on the the Windows buildbots after my last patch.
+
+        Unreviewed.
+
+        * wtf/FastMalloc.cpp:
+        (WTF::fastAlignedMalloc): Let's pass these arguments in the right order.
+
 2015-03-06  Myles C. Maxfield  <mmaxfi...@apple.com>
 
         Crash in -[WebCascadeList objectAtIndex:] + 195

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (181179 => 181180)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2015-03-06 21:31:27 UTC (rev 181179)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2015-03-06 22:01:58 UTC (rev 181180)
@@ -93,7 +93,7 @@
 
 void* fastAlignedMalloc(size_t alignment, size_t size) 
 {
-    return _aligned_malloc(alignment, size);
+    return _aligned_malloc(size, alignment);
 }
 
 void fastAlignedFree(void* p) 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to