Ignore:
Timestamp:
May 2, 2000, 10:53:15 PM (25 years ago)
Author:
sandervl
Message:

added exception stack dump code; GetLocaleInfoA fixes

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:50 sandervl Exp $ */
     1/* $Id: virtual.cpp,v 1.30 2000-05-02 20:53:13 sandervl Exp $ */
    22
    33/*
     
    437437    if(rc)
    438438    {
    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);
    443446    }
    444447  }
Note: See TracChangeset for help on using the changeset viewer.