As we know, local variables have local scope and lifetime. Consider the following code:
int* abc()
{
int m;
return(&m);
}
void main()
{
int* p=abc();
*p=32;
}
This gives me a warning that a function returns the address of a local variable. I see this as justification: Local veriable m is deallocated once abc() completes. So we are dereferencing an invalid memory location in the main function.
However, consider the following code:
int* abc()
{
int m;
return(&m);
int p=9;
}
void main()
{
int* p=abc();
*p=32;
}
Here I am getting the same warning. But I guess that m will still retain its lifetime when returning. What is happening? Please explain the error. Is my justification wrong?
mshould stay alive in the second version? – sepp2k May 14 '12 at 21:28abc()contains an unreachable definition of a local variable calledpand in the first it doesn't. There's just no relevant difference. </smart-ass-mode> – sepp2k May 14 '12 at 21:31int p=9;has any bearing on anything. – Jim Balter May 15 '12 at 8:26