Changeset 47842 in webkit for trunk/JavaScriptCore
- Timestamp:
- Aug 27, 2009, 4:35:56 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r47838 r47842 1 2009-08-27 Steve Falkenburg <[email protected]> 2 3 Reviewed by Geoff Garen. 4 5 Fix Windows-specific crash due to missing memory clearing call. 6 7 * runtime/Collector.cpp: 8 (JSC::Heap::allocateBlock): 9 1 10 2009-08-27 Brent Fulgham <[email protected]> 2 11 -
trunk/JavaScriptCore/runtime/Collector.cpp
r47799 r47842 239 239 #elif PLATFORM(WIN_OS) 240 240 void* address = _aligned_malloc(BLOCK_SIZE, BLOCK_SIZE); 241 memset(address, 0, BLOCK_SIZE); 241 242 #elif HAVE(POSIX_MEMALIGN) 242 243 void* address;
Note:
See TracChangeset
for help on using the changeset viewer.