cppcheck/testbufferoverrun5/testbufferoverrun5.cpp

12 lines
84 B
C++
Raw Normal View History

2007-05-21 20:04:19 +02:00
const int SIZE = 10;
void f()
{
int i[SIZE];
i[SIZE] = 0;
}