Compartir a través de


C6333

advertencia C6333: Parámetro no válido: no se permite pasar MEM_RELEASE y un parámetro dwSize que no sea cero en <función>.Esto provocará un error en la llamada

Esta advertencia indica que se pasa un parámetro no válido a VirtualFree o VirtualFreeEx.Ambas funciones rechazan un dwFreeType de MEM_RELEASE cuando el valor de dwSize es distinto de cero.Cuando se pasa MEM_RELEASE, el parámetro dwSize debe ser cero.Además, asegúrese de que no se omite el valor devuelto de esta función.

Ejemplo

El siguiente ejemplo de código genera esta advertencia:

#include <windows.h>
#define PAGELIMIT 80            

DWORD dwPages = 0;  // count of pages 
DWORD dwPageSize;   // page size 

VOID f( VOID )
{
  LPVOID lpvBase;            // base address of the test memory
  BOOL bSuccess;           
  SYSTEM_INFO sSysInfo;      // system information

  GetSystemInfo( &sSysInfo );  
  dwPageSize = sSysInfo.dwPageSize;

  // Reserve pages in the process's virtual address space
  lpvBase = VirtualAlloc(
                         NULL,                // system selects address
                         PAGELIMIT*dwPageSize,// size of allocation
                         MEM_RESERVE,        
                         PAGE_NOACCESS );     
  if (lpvBase)
  {
    // code to access memory 
  }
  else
  {
    return;
  }

  bSuccess = VirtualFree(lpvBase, PAGELIMIT * dwPageSize, MEM_RELEASE); 
  //code...
}

Para corregir esta advertencia, utilice el siguiente código de ejemplo:

#include <windows.h>
#define PAGELIMIT 80            

DWORD dwPages = 0;  // count of pages 
DWORD dwPageSize;   // page size 

VOID f( VOID )
{
  LPVOID lpvBase;            // base address of the test memory
  BOOL bSuccess;           
  SYSTEM_INFO sSysInfo;      // system information

  GetSystemInfo( &sSysInfo );  
  dwPageSize = sSysInfo.dwPageSize;

  // Reserve pages in the process's virtual address space
  lpvBase = VirtualAlloc(
                         NULL,                // system selects address
                         PAGELIMIT*dwPageSize,// size of allocation
                         MEM_RESERVE,        
                         PAGE_NOACCESS );     
  if (lpvBase)
  {
    // code to access memory 
  }
  else
  {
    return;
  }
  bSuccess = VirtualFree(lpvBase, 0, MEM_RELEASE );

  //  VirtualFree(lpvBase, PAGELIMIT * dwPageSize, MEM_DECOMMIT); 
  // code...
}

También puede utilizar VirtualFree(lpvBase, PAGELIMIT * dwPageSize, MEM_DECOMMIT); llame a las páginas de anulación de registro, y libérelas más adelante utilizando el marcador MEM_RELEASE.

Vea también

Referencia

IHostMemoryManager::VirtualAlloc (Método)

IHostMemoryManager::VirtualFree (Método)