Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

I have read a C++ book talk about wild pointer, and they just said that wild pointer is very dangerous without reason. What are those dangers ? Note: This is not about the definition of 'Wild Pointer'.

share|improve this question
9  
They can be deadly in a stampede. – Mike Mar 4 at 15:26
a 'wild pointer'? – Zdeslav Vojkovic Mar 4 at 15:27
3  
Can you include the book's definition of "wild pointer" in your question? – Kate Gregory Mar 4 at 15:27
4  
I thought wild pointers were long extinct. – FUZxxl Mar 4 at 15:27
2  
@Mike - I just hate those thundering herds – Martin James Mar 4 at 15:28
show 4 more comments

marked as duplicate by Mike, Zeta, George Stocker Mar 4 at 15:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

The dangers are that there is no way in either C or C++ to detect that a pointer is invalid by a simple programmatic check. As a result, you can dereference a dangling or wild pointer, write data to the pointed-to location or read data from it despite the pointer being invalid and your program invoking undefined behaviour.

If you are lucky, the program will crash with an access violation or segmentation fault, if you're unlucky the invalid reads and writes will go undetected and might corrupt the state of your program in a way that is extremely hard to debug.

A typical example would either be using an uninitialized pointer (which is becoming a little rarer as a lot of compilers will initialize pointers to known "bad" values in debug mode) or the more common "delete object, then write to it or read from it" idiom. The latter is especially deadly as deleted objects tend to be just marked as such by the memory manager, but remain in memory as they are until the get overwritten. Trying to debug such a problem without the appropriate tools like Valgrind or Purify will take a substantial amount of time.

share|improve this answer

Look at this example:

int* foo()
{
    int x;
    return &x;
}

int main()
{
    int* pX = foo();
    // UNDEFINED BEHAVIOR...
}

within the body of foo() a variable with automatic storage duration is created and pointer to this variable is returned. When the execution leaves the scope of this function, the pointer that has been returned becomes invalid (dangling pointer a.k.a. wild pointer). Accessing the memory that this pointer points to procudes undefined behavior

Undefined behavior can result in different things, it might lead to problems that will cause your application to crash, e.g. segmentation fault, but sometimes you might even end up with code that contains some error that produces an undefined behavior, but in most of situations this code will actually work. When there is undefined behavior that you can't observe, that's the worst situation, because there will be bugs in your code that will give you hard time and some of them might be really hard to find.

share|improve this answer

You can be accidentally changing some random-pointed variables that might be critical for the program thus it might crash or behave weirdly.

share|improve this answer

Wild pointer's are pointers that no longer point to valid memory, or never did in the first place. Attempting to use them can lead to Undefined Behavior.

share|improve this answer

a wild pointer can point to any memory location valid as well as invalid

One is not sure when a wild pointer points to a valid location

So the program behaviour would change drastically. Sometimes it works fine... sometimes it doesnot and sometimes it changes some value.

Hence wild pointer is dangerous

share|improve this answer

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