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!

link|improve this question
2  
Why do you think memset is used here to allocate memory? The code does not show that at all. mbiMemory is a local struct on the stack and it is filled with zeroes by using memset. There is no dynamic memory allocation going on at all. – Jesper May 19 '11 at 11:02
feedback

4 Answers

No, they don't allocate memory, they just reset the struct to contain all zeroes so that it is initialized to some known state and the program behaves in reproduceable manner. Since they only overwrite that struct (sizeof is passed as "number of bytes") they won't overrun anything.

link|improve this answer
feedback

Idiomatic coding would be like this:

MEMORY_BASIC_INFORMATION mbiMemory = {0};

The problem with that is that when non-expert C++ programmers read the samples they most likely will not understand that particular syntax. Raymond Chen wrote about this recentlyway back in 2005.

link|improve this answer
1  
Recently? 2005? – Michael Burr May 19 '11 at 13:58
-1: The question is tagged as "c", not "c++". This won't work in C (unless MEMORY_BASIC_INFORMATION has only one member) – qbert220 May 19 '11 at 15:37
@qbert220 I believe the meaning of that initializer statement to be compiler specific. – David Heffernan May 19 '11 at 15:50
@qbert220: That initializer will work in C just fine. Even if MEMORY_BASIC_INFORMATION. C++ added the ability for initializers to be completely empty (` some_struct = { };`). – Michael Burr May 20 '11 at 5:24
@David, @Michael: Having checked my books I agree with you. Can't seem to remove my downvote though. – qbert220 May 20 '11 at 7:18
show 2 more comments
feedback

No. INFORMATION mbiMemory is an automatic variable. It's a struct, and it's allocated on the stack. Just like if you'd written int foo.

link|improve this answer
thanks! now i got it :) – aaaa May 19 '11 at 11:05
feedback

The memory is allocated on the stack by this:

MEMORY_BASIC_INFORMATION mbiMemory;

the memset is clearing the memory that has been allocated to zeros.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.