On 01/03/2012 03:02 PM, Markus Henschel wrote: > struct Foo * foo_instance() > { > static struct Foo foo; > return &foo; > } Uh, no. You can't return a reference to a local variable. Andrew.
On 01/03/2012 03:02 PM, Markus Henschel wrote: > struct Foo * foo_instance() > { > static struct Foo foo; > return &foo; > } Uh, no. You can't return a reference to a local variable. Andrew.