Ignore:
Timestamp:
Dec 13, 2000, 12:57:16 AM (25 years ago)
Author:
sandervl
Message:

GetVolumeInformation bugfix + invalid VirtualFree calls corrected + free named shared memory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/virtual.cpp

    r4592 r4796  
    1 /* $Id: virtual.cpp,v 1.37 2000-11-14 21:16:26 sandervl Exp $ */
     1/* $Id: virtual.cpp,v 1.38 2000-12-12 23:57:16 sandervl Exp $ */
    22
    33/*
     
    453453  if ( (FreeType & MEM_RELEASE) && (cbSize   != 0) )
    454454  {
     455    dprintf(("WARNING: VirtualFree: invalid parameter!!"));
    455456    SetLastError(ERROR_INVALID_PARAMETER);
    456457    return(FALSE);
     
    460461       (FreeType & MEM_RELEASE) )
    461462  {
     463    dprintf(("WARNING: VirtualFree: invalid parameter!!"));
    462464    SetLastError(ERROR_INVALID_PARAMETER);
    463465    return(FALSE);
Note: See TracChangeset for help on using the changeset viewer.