char *recvmsg(){
char buffer[1024];
return buffer;
}
int main(){
char *reply = recvmsg();
.....
}
I get a warning warning C4172: returning address of local variable or temporary
I get a warning warning C4172: returning address of local variable or temporary |
||||
|
You need to dynamically allocate your char array:
for C++ and
for C. What happens is, without dynamic allocation, your variable will reside on the function's stack and will therefore be destroyed on exit. That's why you get the warning. Allocating it on the heap prevents this, but you will have to be careful and free the memory once done with it via |
|||||||
|
|
I would suggest
And then if you ever need
And you're done. That means, if you're using C API, then you can still use The bottomline is : avoid using |
|||||||||
|
|
The warning message is correct. You're returning the address of a local array which disappears after the function returns. You can do this using dynamic memory allocation:
The catch is that you need to make sure you Alternatively, you can pass the buffer into the function.
This avoids the need for a memory allocation. This is actually the preferred way to do it. |
|||||||||||
|
|
The problem is that You could allocate
Note that now the caller is responsibe for disposing of the allocated memory:
|
|||||
|
|
The problem is that you are returning a pointer to a buffer allocated on the stack. Once the function returns, that buffer is no longer valid. |
|||
|
|
|
You are allocating the array on the stack inside of your If you want to return a pointer to memory you will need to allocate it dynamically using |
|||
|
|
|
You could dynamically create the buffer, but then the caller needs to know to free it. I think it's better to pass in a buffer (assuming recvmsg also fills it)
Even if the caller decides dynamic is better, they will know that they need to free it, and the specific way to do that (free(), delete, delete[], or perhaps something special from a custom allocator) |
|||
|
|
|
You have a few options...The way you're doing it now is going to cause undefined behavior as the array will go out of scope once hte function returns. So one option is to dynamically allocate the memory..
Just remember to clean it up with delete this way (or free if you used malloc). Second, you could use a parameter...
Again, the same thing goes for clean up here as with the previous. Also note the check for 0 to make sure you don't call new on a pointer that's been allocated already. Last, you could use a vector..
|
|||
|
|
|
when you are returning the buffer then as it acting as a pointer to the first location of the array so it will return its address.And the place where you are calling the function there you can make a character pointer which will store this returned address value .After which you can move your pointer and can access all the elements of your array. |
|||
|
|
void mainis wrong. – PlasmaHH Oct 14 '11 at 15:41void mainit's highly likely crap. I'll recommend a good introductory C++ book. – R. Martinho Fernandes Oct 14 '11 at 15:50