Changeset 9911 for trunk/src/kernel32/virtual.cpp
- Timestamp:
- Mar 6, 2003, 11:44:34 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/virtual.cpp
r9884 r9911 1 /* $Id: virtual.cpp,v 1.5 3 2003-03-03 16:30:44 sandervl Exp $ */1 /* $Id: virtual.cpp,v 1.54 2003-03-06 10:44:34 sandervl Exp $ */ 2 2 3 3 /* … … 180 180 return FALSE; 181 181 } 182 ret = map->flushView( offset, cbFlush);182 ret = map->flushView((ULONG)base, offset, cbFlush); 183 183 map->Release(); 184 184 return ret; … … 365 365 if(map) { 366 366 //TODO: We don't allow protection flag changes for mmaped files now 367 map->commitPage( offset, FALSE, nrpages);367 map->commitPage((ULONG)lpvAddress, offset, FALSE, nrpages); 368 368 map->Release(); 369 369 return lpvAddress;
Note:
See TracChangeset
for help on using the changeset viewer.