How to solve a double free problem by writing a wrapper function with name free so that i need not change every free call in my source code?
|
1
|
|||||||
|
|
|
Don't do that An easy way is to define your wrapper function and #define free to call your function instead.
but ... don't do that! |
|||
|
|
Apart from all the other answers and references to memory management developement etc. When double free occurs there are errors in the code that indicates that things are not done in the right order, etc. When I started working with Java some 10 years ago, everybody praised Java since you did not have to bother about new/delete. I was bothered (as I was used to develop in C/C++), since suddenly all the open/close, create/destroy, lock/unlock patterns that shows up in so many ways in software apart from malloc/free could be broken since everybody believed that all cleanup was automatic. So when you have these problems, you probably have other problems as well sooner or later. Resources held up, DB connections being consumed, files locked on filesystems. Double free is a signal that your program does not have a good structure, e.g things being allocated in one layer and freed in another. |
||
|
|
|
|
The following code intercepts calls to When calling Header
Source
|
||
|
|
|
Look through the answers to the stackoverflow question, "Write your own memory manager". Using the tools or techniques in those answers will let you incorporate a memory manager that checks for these types of problems so you can identify and fix them (as many other answers to your question indicate, it's not a good idea to use something like this as a workaround). |
||
|
|
|
|
I agree with the other posts that say you shouldn't. Mainly, it'll be much more confusing for someone to look at your code and try to figure out what's going on (when they're used to see free only freeing memory). If you're looking for a single line piece of code that will allow you to free and clear a pointer, I'd recommend using a macro, though there are other ways of doing this (creating a method that takes a pointer to your pointer).
EDIT As Christoph mentioned in a comment, you can also make sure a user uses the macro like a function (ends the line with a semicolon by using a do while like this:
which will execute once and require an ending semicolon. |
||||||
|
|
|
Don't do that. No, really. Fix the actual problem. Once free() has been called on a pointer, your code should not be holding on to it for any reason. Null it out so you can't free it again; this will make any other problems caused by stale pointer dereferencing visible too. |
||||||||||||||||
|
