Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I made a program, I want to debug it (or run) and before the first operator in function main it breaks with a message: Unhandled exception at 0x0020f677 in name.exe: Stack overflow. Why is this happening and how to resolve the problem? Visual C++ 2010, Win32 console application.

EDIT1: Debugger shows me the asm code at chkstk.asm.

What is important to analyse in order to solve this problem? Something added in header files is causing this problem?

share|improve this question
2  
You have global variables? If you can post the code a definitive answer can be provided. – Naveen Mar 23 '11 at 6:32
No I don't have global variables, but have some additional header files, the code is litle bit inconvenient to paste here because I have about 5 header files.. – maximus Mar 23 '11 at 6:38
Do your header files contain global variables? – Johnsyweb Mar 23 '11 at 6:47
No, they don't contain global variables – maximus Mar 23 '11 at 6:52
1  
+1 for using the term stackoverflow in its context ;-) – Stephane Rolland Mar 23 '11 at 10:13
show 1 more comment

2 Answers

up vote 2 down vote accepted

If you decleared a fixed size array and if its size is too much, you may have this error.

int fixedarray[1000000000];

Try to decrease the length or create it on the heap.

int * array = new int[1000000000];

Do not forget to delete it later.

delete[] array;

But it is better to use std::vector instead of pointers even in a C function,

//...
int Old_C_Func(int * ptrs, unsigned len_);
//...
std::vector<int> intvec(1000000000);
int * intptr = &intvec[0];
int result = Old_C_Func(intptr,intvec.size());

assuming 32bit compilation.

share|improve this answer

This sounds like an object constructor or some code triggered by one is causing a stack overflow. I'd use the debugger to see what the stack overflow is being caused by, keeping in mind that a constructor for a global variable might be the root cause.

share|improve this answer
Debugger shows me the asm code at chkstk.asm, – maximus Mar 23 '11 at 6:41
Can you backtrace so that you know more than that, or is that as far down as the debugger will take you? – templatetypedef Mar 23 '11 at 6:47
first it shows some calls to kernel and ntdll. and the goes call to mainCRTStartUp then __tmainCRTStartup() and finally _chkstk() – maximus Mar 23 '11 at 6:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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