For example:
char * myString = malloc(sizeof(char)*STRING_BUFFER_SIZE);
free(myString);
free(myString);
Are there any adverse side effects of doing this?
|
For example:
Are there any adverse side effects of doing this?
| |||
|
feedback
|
|
Here's the chapter and verse.
| |||||||||
feedback
|
|
One of nothing, silent memory corruption, or segmentation fault. | |||
|
feedback
|
|
Yes, you can get a double free error that causes your program to crash. It has to do with malloc's internal data structures to keep track of allocated memory. | |||
|
feedback
|
|
Not so clever. Google for double free vulnerabilities. Set your pointer to | |||||||||||
feedback
|
|
Answer summary: Yes, bad things can and probably will happen. To prevent this do:
Note that all references to the memory must be set to Also, calling | |||||||||
feedback
|
|
Depending on which system you run it on, nothing will happen, the program will crash, memory will be corrupted, or any other number of interesting effects. | |||
|
feedback
|
|
Don't do that. If the memory that got freed is re-allocated to something else between the calls to | |||||
feedback
|
|
Bad Things (TM) Really, I think it's undefined so anything at all including playing "Global Thermonuclear War" with NORAD's mainframe | |||
|
feedback
|
|
Always set a pointer to NULL after freeing it. It is safe to attempt to free a null pointer. It's worth writing your own free wrapper to do this automatically. | ||||
feedback
|
|
It may crash your program, corrupt memory, or have other more subtle negative effects. After you delete memory, it is a good idea to set it to NULL (0). Trying to free a null pointer does nothing, and is guaranteed to be safe. The same holds true for delete in c++. | |||
|
feedback
|
|
In short: "Undefined Behavior". (Now, what that can include and why that is the case the others have already said. I just though it was worth mentioning the term here as it is quite common). | |||
|
feedback
|
|
The admittedly strange macro below is a useful drop-in replacement for wiping out a few classes of security vulnerabilities as well as aid debugging since accesses to free()'d regions are more likely to segfault instead of silently corrupting memory.
The do-while loop is to help surrounding code more easily digest the multiple-statements. e.g. if (done) my_free(x); | |||||||
feedback
|
|
Another interesting situation:
| |||
|
feedback
|
|
It (potentially) makes demons fly out of your nose. | |||
|
feedback
|