I'm trying to use splint to detect some bug in my code. One of more critical point is the buffer overflow detection and seem that splint is not able to do that. I've tried with a simple C-code
void test()
{
int i;
int a[10]
for(i=0;i<12;i++)
a[i]=i;
}
This code generate a core dump but the Splint log is empty I runned splint with default flag Any suggestion about to detect this ? Thanks