repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tests/vg_regtest: Always evaluate prerequisite expressions with sh
[valgrind.git]
/
memcheck
/
tests
/
nanoleak_supp.c
blob
7f5b0ee80a4703a0e713222ef4d1a57a7d506bb5
1
2
#include <stdlib.h>
3
4
int
main
(
void
)
5
{
6
volatile
int
*
a
=
malloc
(
1000
);
7
a
[
0
] =
0
;
8
return
a
[
0
];
9
}