Changeset 699 for trunk/src/kernel32/exceptions.cpp
- Timestamp:
- Aug 25, 1999, 7:05:57 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r697 r699 1 /* $Id: exceptions.cpp,v 1.1 4 1999-08-25 15:46:52sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.15 1999-08-25 17:05:57 sandervl Exp $ */ 2 2 3 3 /* … … 897 897 { 898 898 Win32MemMap *map; 899 899 BOOL fWriteAccess = FALSE; 900 900 901 if(pERepRec->ExceptionInfo[1] == 0 && pERepRec->ExceptionInfo[1] == XCPT_DATA_UNKNOWN) { 901 902 goto continueFail; … … 915 916 goto continueFail; 916 917 } 918 fWriteAccess = TRUE; 917 919 break; 918 920 case XCPT_EXECUTE_ACCESS: … … 926 928 //Might want to consider mapping more than one page if access is at 927 929 //a high offset in the page 928 if(map->commitPage((LPVOID)pERepRec->ExceptionInfo[1], 1 ) == TRUE)930 if(map->commitPage((LPVOID)pERepRec->ExceptionInfo[1], 1, fWriteAccess) == TRUE) 929 931 return (XCPT_CONTINUE_EXECUTION); 930 932
Note:
See TracChangeset
for help on using the changeset viewer.