Title: [199339] trunk/Source/_javascript_Core
- Revision
- 199339
- Author
- [email protected]
- Date
- 2016-04-12 00:29:35 -0700 (Tue, 12 Apr 2016)
Log Message
Build fix after r199299.
https://bugs.webkit.org/show_bug.cgi?id=155508
* jit/ExecutableAllocatorFixedVMPool.cpp:
(JSC::FixedVMPoolExecutableAllocator::initializeSeparatedWXHeaps):
memset_s is not defined. __STDC_WANT_LIB_EXT1__ is not defined anywhere.
Since the return value is unused and set_constraint_handler_s is never called
I'm chaning it to memset.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (199338 => 199339)
--- trunk/Source/_javascript_Core/ChangeLog 2016-04-12 06:53:54 UTC (rev 199338)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-04-12 07:29:35 UTC (rev 199339)
@@ -1,3 +1,14 @@
+2016-04-12 Alex Christensen <[email protected]>
+
+ Build fix after r199299.
+ https://bugs.webkit.org/show_bug.cgi?id=155508
+
+ * jit/ExecutableAllocatorFixedVMPool.cpp:
+ (JSC::FixedVMPoolExecutableAllocator::initializeSeparatedWXHeaps):
+ memset_s is not defined. __STDC_WANT_LIB_EXT1__ is not defined anywhere.
+ Since the return value is unused and set_constraint_handler_s is never called
+ I'm chaning it to memset.
+
2016-04-11 Benjamin Poulain <[email protected]>
[JSC] B3 can use undefined bits or not defined required bits when spilling
Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp (199338 => 199339)
--- trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp 2016-04-12 06:53:54 UTC (rev 199338)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp 2016-04-12 07:29:35 UTC (rev 199339)
@@ -210,7 +210,7 @@
RELEASE_ASSERT(!result);
// Zero out writableAddr to avoid leaking the address of the writable mapping.
- memset_s(&writableAddr, sizeof(writableAddr), 0, sizeof(writableAddr));
+ memset(&writableAddr, 0, sizeof(writableAddr));
jitWriteFunction = reinterpret_cast<JITWriteFunction>(writeThunk.code().executableAddress());
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes