I'm working on ANSI C.

I have a string object which created with array of char.. I think the object make a memory leak.. when I run my program about five minutes (maybe almost 10000 iteration) my used memory become bigger and bigger..

I tried to free my object used memory with free and delete function. but, delete isn't a valid function. in the other side, free looks like running well first. but I got free():invalid pointer..

How can I fix this? I can do it differently?


here's a little of my code..

char *ext;
ext = calloc(20, sizeof(char));
//do something with ext
free(ext);
link|improve this question

67% accept rate
2  
free is the right function. If you're getting invalid pointer errors, it means you have a bug in your code. Please post the relevant parts. – Mat Jun 18 '11 at 9:43
6  
No code, no cookie. – sbi Jun 18 '11 at 9:44
that's a little of my code.. I make a new char * at the first time when I call my function, and I free at the end of my function... I can't copy all of my program to this forum, because it's long enough.. >,< – Bobby Stenly Jun 18 '11 at 9:49
@Bobby, that looks alright, but what is happening in the //do something with ext, is it being written to, did you accdently do ext = /*some value*/ ? – Node Jun 18 '11 at 9:55
3  
-1 the bug is in the code that only you can see; if you don't show us the code then you'll have to solve it yourself – David Heffernan Jun 18 '11 at 10:56
show 3 more comments
feedback

3 Answers

In C, you allocated memory on the heap with malloc, and release is with free. So you are correct there. delete is used in C++, and then, only if the memory was allocated with the new operator.

If you are getting an invalid pointer error in your call to free, then there is likely a bug somewhere in the code, if you post it we could take a look at it.

link|improve this answer
feedback

Maybe you're writing past the end of the allocated memory. With

calloc(20, sizeof(char))

you allocate space for 20 characters (19 "regular" and a null terminator for strings).

Make very sure none of your strcat() try to write "regular" characters beyond str[18].

link|improve this answer
feedback

Without more code:

  1. An array in memory just prior to what ext points to overran its storage and corrupted a type of "header" that malloc() uses to track the size of the memory for subsequent calls to free() (think of ((size_t *)ext)[-1] holding the size from the malloc).
  2. You used a negative array index into ext[negative] that did the same corruption.
  3. ext somehow gets modified.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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