cppcheck/testbufferoverrun1/testbufferoverrun1.cpp

8 lines
75 B
C++
Raw Normal View History

2007-05-20 19:47:39 +02:00
void f()
{
2007-05-21 11:54:42 +02:00
char str[0x10];
str[15] = 0;
str[16] = 0;
2007-05-20 19:47:39 +02:00
}