vote up 1 vote down star

I'm having a little issue. I have an object that I'm freeing with delete, and it has a char* that's being freed with free in its destructor. The reason I'm using free is because I used strdup and malloc in creating the char pointers. The reason I'm using malloc is because I used strdup to begin with in most code paths. Would this scenario cause memory corruption?

Edit: I figured out what was wrong. I was passing my object as a copy through a method, and it kept the char* across; when the function exited, that temporary object got deleted, freeing the char*. Now I need the char* after the method exited, but that's gone now. Two *'s and minus one fixed it.

flag

I think that there is a misunderstanding here, your object only holds a pointer to another memory zone where the chars are actually stored. Therefore you are not freeing memory contained by the object, so everything is fine. – Matthieu M. Oct 28 at 9:02
I wouldn't think there should be a problem but did you face any issues while doing this? Curious. – Agnel Kurian Oct 28 at 9:09
You should mention how you allocated/initialized your object that contains the pointer. – sellibitze Oct 28 at 9:09

3 Answers

vote up 4 vote down check

No, if you match calls properly i.e. free() for memory allocated with malloc() and delete for memory allocated with new, it will work fine.

link|flag
vote up 1 vote down

Your implementation is correct. You use free() to release memory allocated with malloc() (or strdup()) and this is exactly what to do.

The requirement is that you release memory with a primitive matching the one used to allocate that memory. And this requirement is met in your implementation.

link|flag
vote up 2 vote down

What you are doing is correct. A class that has been newed should be deallocated with delete, but if it owns memory that was allocated with malloc (either directly or indirectly) then it should deallocate that memory with free.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.