Changeset 199339 in webkit
- Timestamp:
- Apr 12, 2016, 12:29:35 AM (9 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r199337 r199339 1 2016-04-12 Alex Christensen <achristensen@webkit.org> 2 3 Build fix after r199299. 4 https://bugs.webkit.org/show_bug.cgi?id=155508 5 6 * jit/ExecutableAllocatorFixedVMPool.cpp: 7 (JSC::FixedVMPoolExecutableAllocator::initializeSeparatedWXHeaps): 8 memset_s is not defined. __STDC_WANT_LIB_EXT1__ is not defined anywhere. 9 Since the return value is unused and set_constraint_handler_s is never called 10 I'm chaning it to memset. 11 1 12 2016-04-11 Benjamin Poulain <bpoulain@apple.com> 2 13 -
trunk/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
r199299 r199339 211 211 212 212 // Zero out writableAddr to avoid leaking the address of the writable mapping. 213 memset _s(&writableAddr, sizeof(writableAddr), 0, sizeof(writableAddr));213 memset(&writableAddr, 0, sizeof(writableAddr)); 214 214 215 215 jitWriteFunction = reinterpret_cast<JITWriteFunction>(writeThunk.code().executableAddress());
Note:
See TracChangeset
for help on using the changeset viewer.