[WARNING]
A recursive function call was detected. There is a danger of endless recursion, which leads to a stack overflow.
void f(void) {
f(); // warning; this code leads to an endless
recursion
}
void g(int i) {
if(i>0) {
g(--i); // warning; this code has no endless
recursion
}
}
Be sure there is no endless recursion. This would lead to a stack overflow.