diff options
Diffstat (limited to 'tests/test_stpcpy_overwrite_over.c')
| -rw-r--r-- | tests/test_stpcpy_overwrite_over.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/test_stpcpy_overwrite_over.c b/tests/test_stpcpy_overwrite_over.c new file mode 100644 index 0000000..b7cbedc --- /dev/null +++ b/tests/test_stpcpy_overwrite_over.c | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #include "common.h" | ||
| 2 | |||
| 3 | #include <string.h> | ||
| 4 | |||
| 5 | int main(int argc, char** argv) { | ||
| 6 | char buffer[9] = {'A', 'A', 'A', 'A', 'B', 'B', 'B', 'B', '\0'}; | ||
| 7 | puts(buffer); | ||
| 8 | |||
| 9 | CHK_FAIL_START | ||
| 10 | stpcpy(buffer+1, buffer); | ||
| 11 | CHK_FAIL_END | ||
| 12 | |||
| 13 | puts(buffer); | ||
| 14 | return ret; | ||
| 15 | } | ||
