Condividi tramite


C6333

avviso C6333: Parametro non valido: il passaggio di MEM_RELEASE e di un parametro dwSize diverso da zero a <funzione> non è consentito. Questa chiamata non riuscirà

L'avviso indica che un parametro non valido è stato passato a VirtualFree o VirtualFreeEx. Entrambe le funzioni rifiutano un dwFreeType di MEM_RELEASE con un valore diverso da zero di dwSize. Quando si passa MEM_RELEASE, il parametro dwSize deve essere zero. Accertarsi anche che il valore restituito di questa funzione non venga ignorato.

Esempio

Il codice di esempio seguente genera questo avviso:

#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...
}

Per risolvere il problema, utilizzare il codice di esempio seguente:

#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...
}

È inoltre possibile utilizzare la chiamata VirtualFree(lpvBase, PAGELIMIT * dwPageSize, MEM_DECOMMIT); per liberare le pagine, e successivamente rilasciarle mediante il flag MEM_RELEASE.

Vedere anche

Riferimenti

IHostMemoryManager::VirtualAlloc Method

IHostMemoryManager::VirtualFree Method