Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
7d9f94dda63c0e604774f491ed6b3decbf5c3ce5
/
.
/
memcheck
/
tests
/
nanoleak.c
blob: 2b7121cbf478636c92a246d0e2d3c60fae018e26 [
file
] [
log
] [
blame
]
#include
<malloc.h>
int
main
(
void
)
{
volatile
int
*
a
=
malloc
(
1000
);
a
[
0
]
=
0
;
return
a
[
0
];
}