artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
25e6e8df0b9b16f30d0ed6af4d52f197a87b90b2
[openbsd]
/
1
void recursive_function(int i)
2
{
3
if (i < 10)
4
{
5
recursive_function(i + 1);
6
}
7
else
8
{
9
char *null=0;
10
*null = 0; // Crash here.
11
}
12
}
13
14
int main(int argc, char *argv[])
15
{
16
recursive_function(0);
17
return 0;
18
}
19