In C++ does a pointer remains valid after stack unwinding or not ?

Thanks for consideration.

Regards Ehsan

link|improve this question

50% accept rate
Do you mean a pointer stored on the stack, but pointing to the heap, or do you mean you are pointing to something that was on the part of the stack that is now unwound? – quamrana Apr 25 '11 at 9:43
feedback

4 Answers

up vote 1 down vote accepted

It depends on what your pointer is pointing to. If it points to heap memory, it still remains valid. If it points to stack memory, it becomes invalid.

link|improve this answer
feedback

It depends on the storage of the pointed-to object. If that object was stack-allocated then the pointer surely becomes invalid - stack unwinding will properly destroy the object. If the object was heap-allocated the pointer only becomes invalid if there's some RAII variable that deallocates the object during stack unwinding.

link|improve this answer
feedback

No. With stack Unwinding all variables/pointers that are declared in the scopes of the unwounded part of the stack get destroyed.

Also, the rule takes in to consideration the Storage Type of the variables.
for eg: A static variable retains its value between function calls, which means it is not destroyed during stack unwinding. This is due to the fact that Static variable are not stored on the stack but on the BSS or Data Segments.

Local variables(Auto storage type) created on stack inside a function will always be destroyed when function returns and stack unwinding takes place.

Pointers allocated with memory on heap will not be destroyed on stack unwinding because they are allocated on Heap and not stack.

One important rule to remember is NEVER return pointers or references to local variables inside a function. The pointer or reference will contain garbage values.

link|improve this answer
All those that were declared in the scopes of the unwounded part of the stack, IIRC. – Neowizard Apr 25 '11 at 9:08
@Neowizard: Agreed, Indeed that should be mentione explicitly. – Als Apr 25 '11 at 9:11
Even if the pointer points to some memory completely unrelated to the stack, e.g. heap memory? – Grigory Apr 25 '11 at 9:14
@Grigory Javadyan: Beat me to it on mention of Heap memory :) – Als Apr 25 '11 at 9:22
feedback

Consider some examples:

void* f1a()
{
    void* p = malloc(10);
    return p;
}

...is the same as...

void* f1b()
{
    return malloc(10);
}

That's fine, as the pointers are to the heap and thus independent of the stack, function calls and programmatic scopes. The pointer value is copied as the function returns.

int* f2()
{
    int x;
    return &x;  // pointer to x - about to become invalid!
}

The above returns a pointer to a variable x on the stack, which will be reclaimed (x lost) when the function returns.

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.