Test: Added 'TestBufferOverrun4'

This commit is contained in:
Daniel Marjamäki 2007-05-21 17:17:11 +00:00
parent 6f69fefc24
commit 39aef96ee6
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
[testbufferoverrun4\testbufferoverrun4.cpp:6]: Buffer overrun

View File

@ -0,0 +1,7 @@
void f()
{
char str[3];
strcpy(str, "abc");
}