mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
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 *-*-* } } */
|