I made a lot of testing but I really don't think there can be a solution for these kind of issues.
It is an infinite loop that result in the process killed by the OS.
The same exact issue can be reproduced this a C program like:
#include<stdio.h>staticintfunc1(int a, int b);
staticint sum = 0;
staticintfunc2(int a, int b) {
sum += func1(a,b);
return sum;
}
staticintfunc1(int a, int b) {
sum += func2(a, b+sum);
return sum;
}
intmain(int argc, constchar * argv[]) {
func1(1,2);
return0;
}
GDB:
POC:
The text was updated successfully, but these errors were encountered: