Title: [230915] trunk/Source/bmalloc
Revision
230915
Author
[email protected]
Date
2018-04-23 08:23:35 -0700 (Mon, 23 Apr 2018)

Log Message

Include stdio.h before using stderr
https://bugs.webkit.org/show_bug.cgi?id=184872

Patch by Ting-Wei Lan <[email protected]> on 2018-04-23
Reviewed by Yusuke Suzuki.

* bmalloc/PerProcess.cpp:
* bmalloc/Scavenger.cpp:

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (230914 => 230915)


--- trunk/Source/bmalloc/ChangeLog	2018-04-23 14:47:00 UTC (rev 230914)
+++ trunk/Source/bmalloc/ChangeLog	2018-04-23 15:23:35 UTC (rev 230915)
@@ -1,3 +1,13 @@
+2018-04-23  Ting-Wei Lan  <[email protected]>
+
+        Include stdio.h before using stderr
+        https://bugs.webkit.org/show_bug.cgi?id=184872
+
+        Reviewed by Yusuke Suzuki.
+
+        * bmalloc/PerProcess.cpp:
+        * bmalloc/Scavenger.cpp:
+
 2018-04-21  Yusuke Suzuki  <[email protected]>
 
         Unreviewed, follow-up patch after r230474

Modified: trunk/Source/bmalloc/bmalloc/PerProcess.cpp (230914 => 230915)


--- trunk/Source/bmalloc/bmalloc/PerProcess.cpp	2018-04-23 14:47:00 UTC (rev 230914)
+++ trunk/Source/bmalloc/bmalloc/PerProcess.cpp	2018-04-23 15:23:35 UTC (rev 230915)
@@ -26,6 +26,7 @@
 #include "PerProcess.h"
 
 #include "VMAllocate.h"
+#include <stdio.h>
 
 namespace bmalloc {
 

Modified: trunk/Source/bmalloc/bmalloc/Scavenger.cpp (230914 => 230915)


--- trunk/Source/bmalloc/bmalloc/Scavenger.cpp	2018-04-23 14:47:00 UTC (rev 230914)
+++ trunk/Source/bmalloc/bmalloc/Scavenger.cpp	2018-04-23 15:23:35 UTC (rev 230915)
@@ -36,6 +36,7 @@
 #import <mach/mach.h>
 #import <mach/mach_error.h>
 #endif
+#include <stdio.h>
 #include <thread>
 
 namespace bmalloc {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to