Compartilhar via


C6331

Aviso C6331: Parâmetro inválido: não é permitido passar MEM_RELEASE e MEM_DECOMMIT em conjunto para <função>.Isso resultados em falha desta telefonar

Esta mensagem indica que um parâmetro inválido que está sendo passado para VirtualFree ou VirtualFreeEx.VirtualFree tanto VirtualFreeEx rejeitar os sinalizadores (MEM_RELEASE | MEM_DECOMMIT) em combinação.Portanto, os valores MEM_DECOMMIT e MEM_RELEASE podem não ser usados juntos na mesma telefonar.

Não é necessário para decommit e versão ocorra sistema autônomo etapas independentes.Liberar memória confirmada para liberação bem sistema autônomo páginas.Além disso, certifique-se que o valor retornado dessa função não é ignorado.

Exemplo

O código de exemplo a seguir gera este aviso:

#include <windows.h>
#define PAGELIMIT 80

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

VOID fd( 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_DECOMMIT | MEM_RELEASE); // warning 
  // code...
}

Para corrigir esse aviso, não passam MEM_DECOMMIT valor VirtualFree telefonar sistema autônomo mostra o código a seguir:

#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); 
  // code...
}

Consulte também

Referência

Método IHostMemoryManager::VirtualAlloc

Método IHostMemoryManager::VirtualFree