Changeset 3483 for trunk/src/kernel32/virtual.cpp
- Timestamp:
- May 2, 2000, 10:53:15 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/virtual.cpp
r3259 r3483 1 /* $Id: virtual.cpp,v 1. 29 2000-03-28 17:11:50sandervl Exp $ */1 /* $Id: virtual.cpp,v 1.30 2000-05-02 20:53:13 sandervl Exp $ */ 2 2 3 3 /* … … 437 437 if(rc) 438 438 { 439 dprintf(("KERNEL32:VirtualFree:OsLibSetMem rc = #%d\n", 440 rc)); 441 SetLastError(ERROR_INVALID_ADDRESS); 442 return(FALSE); 439 if(rc == 32803) { //SvL: ERROR_ALIAS 440 dprintf(("KERNEL32:VirtualFree:OsLibSetMem rc = #%d; app tries to decommit aliased memory; ignore", rc)); 441 return(TRUE); 442 } 443 dprintf(("KERNEL32:VirtualFree:OsLibSetMem rc = #%d\n", rc)); 444 SetLastError(ERROR_INVALID_ADDRESS); 445 return(FALSE); 443 446 } 444 447 }
Note:
See TracChangeset
for help on using the changeset viewer.