Forum Discussion
Altera_Forum
Honored Contributor
16 years agomemory corruption and stack overflows are the most difficult bugs to track down... If you are using pointers in your code, doublecheck that they are always pointing to what they are supposed to point to.
Also check that you don't use big structures as local variables in your functions (such as big tables) as it can generate a stack overflow.