In C++, in which way the stack may get corrupted. One way I guess is to overwriting the stack variables by accessing an array beyond its boundaries. Is there any other way that it can get corrupted?
|
1
|
|||||
|
|
|
But those are not particular to C++, which doesn't have any idea of the stack. |
||||||||||
|
|
|
The C++ standard does not define stack/heap. Further, there are a number of ways to invoke undefined behavior in a program -- all of which may corrupt your stack (it's UB, after all). The short answer is -- your question is too vague to have a meaningful answer. |
||
|
|
|
Calling a function with the wrong calling convention. (though this is technically compiler-specific, not a question of C++, every C++ compiler has to deal with that.) |
||
|
|
|
|
Taking pointers to stack variables is a good way:
If bar keeps a copy of the pointer then anything can happen in the future. Summing up: Stack corruption happens when there's stray pointers pointing to the stack. |
||
|
|
|
|
This might help you. Refer Memory Corruption Part IāStacks. (Login or Subscribe to access full content of this book) |
||
|
|
|
|
Violations of the One Definition Rule can lead to stack corruption. The following example looks stupid, but I've seen it a couple of times with different libraries compiled in different configurations. header.h
file1.cpp
file2.cpp
|
|||
|
|
