Changeset 34886 in webkit for trunk/JavaScriptCore/VM/RegisterFile.cpp
- Timestamp:
- Jun 30, 2008, 4:21:43 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/RegisterFile.cpp
r34838 r34886 35 35 { 36 36 #if HAVE(MMAP) 37 munmap(m_buffer, m_capacity + m_maxGlobals);37 munmap(m_buffer, (m_capacity + m_maxGlobals) * sizeof(Register)); 38 38 #elif HAVE(VIRTUALALLOC) 39 39 // FIXME: Use VirtualFree.
Note:
See TracChangeset
for help on using the changeset viewer.