mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
a84f174425
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29033 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
453 B
C
22 lines
453 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
int main ()
|
|
{
|
|
char *foo;
|
|
char *bar;
|
|
foo = (char *)malloc (10);
|
|
bar = (char *)malloc (10);
|
|
|
|
free(foo);
|
|
|
|
bar[4] = 'a'; /* touch source buffer */
|
|
memcpy(foo, bar, 10);
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "mudflap violation 1.*memcpy dest.*" } */
|
|
/* { dg-output "Nearby object.*" } */
|
|
/* { dg-output "mudflap dead object.*malloc region.*alloc time.*dealloc time.*" } */
|
|
/* { dg-do run { xfail *-*-* } } */
|