i was looking at this example at msdn:
http://msdn.microsoft.com/en-us/library/ms894209.aspx
DWORD dwResult;
MEMORY_BASIC_INFORMATION mbiMemory;
// Clear the results structure.
memset (&mbiMemory, 0, sizeof(MEMORY_BASIC_INFORMATION));
dwResult = VirtualQuery (lpPage, // Page to examine
&mbiMemory, // Structure for results
sizeof(MEMORY_BASIC_INFORMATION));
if (sizeof(MEMORY_BASIC_INFORMATION) != dwResult)
{
// Your error-handling code goes here.
}
seems like they use memset as a way to allocate memory to mbiMemory. Is it ok? wont i run over some memory this way? thanks!
memsetis used here to allocate memory? The code does not show that at all.mbiMemoryis a local struct on the stack and it is filled with zeroes by usingmemset. There is no dynamic memory allocation going on at all. – Jesper May 19 '11 at 11:02