blob: 5ba35cb2cf5c22ef825793facfcdff697da3e3f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
struct barstruct { char const* some_string; } x;
extern void abort (void);
void __attribute__((noinline))
foo(void)
{
if (!x.some_string)
abort ();
}
void baz(int b)
{
struct barstruct bar;
struct barstruct* barptr;
if (b)
barptr = &bar;
else
{
barptr = &x + 1;
barptr = barptr - 1;
}
barptr->some_string = "Everything OK";
foo();
barptr->some_string = "Everything OK";
}
int main()
{
x.some_string = (void *)0;
baz(0);
if (!x.some_string)
abort ();
return 0;
}
|