Changeset 37353 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Oct 6, 2008, 4:47:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r37297 r37353 232 232 vm_deallocate(current_task(), reinterpret_cast<vm_address_t>(block), BLOCK_SIZE); 233 233 #elif PLATFORM(WIN_OS) 234 VirtualFree(block, BLOCK_SIZE, MEM_RELEASE);234 VirtualFree(block, 0, MEM_RELEASE); 235 235 #elif HAVE(POSIX_MEMALIGN) 236 236 free(block);
Note:
See TracChangeset
for help on using the changeset viewer.