Test: Added 'TestBufferOverrun1'

This commit is contained in:
Daniel Marjamäki 2007-05-20 17:47:39 +00:00
parent bda349f9a6
commit b570e3c81d
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
[testbufferoverrun1\testbufferoverrun1.cpp:6]: Array index out of bounds

View File

@ -0,0 +1,7 @@
void f()
{
char str[10];
str[10] = 0;
}