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);
freeis the right function. If you're gettinginvalid pointererrors, it means you have a bug in your code. Please post the relevant parts. – Mat Jun 18 '11 at 9:43//do something with ext, is it being written to, did you accdently doext = /*some value*/? – Node Jun 18 '11 at 9:55