vote up 2 vote down star
1

I know we should free any variable allocated with malloc, but what if I return it in a function? Something like this:

char *somefunction(int somearg){
    char *str;

    str=(char *)malloc(sizeof(char *));

    //some code

    return str;
}

Should I free str? How could I do that?

flag

1  
The argument to malloc() is almost certainly wrong - you're allocating enough memory to store a char *, but assigning to a pointer that points to char (and there's no need to cast the return value of malloc in C, either). str = malloc(N * sizeof *str); is a better way to write that. – caf Aug 20 at 12:32

5 Answers

vote up 7 vote down check

You have two options: one, pass a char* to somefunction and use that instead of allocating within somefunction, or two, free the return value later on.

The first option:

char *somefunction(char *str, int somearg){

    //some code

    return str;
}

// Elsewhere...
char *str = (char *) malloc....;
somefunction(str, 123);
// Code...
free(str);

The second option:

char *somestr = somefunction(123);
// Do something...
free(somestr);

I personally suggest the first option, as it's a little easier to avoid leaking memory when it's not being allocated within arbitary functions.

link|flag
vote up 0 vote down

This is a practice for some existing functions (strdup(), for instance) but is generally a bad idea. Requiring that a user be aware of what happens inside a function call is a bad requirement - think how many functions you use who's internals are hidden from you. Generally speaking, you will want to have a user pass in a buffer and size instead of allocating memory for them.

link|flag
vote up 1 vote down

You free it when you have finished with it. There is no rule that says that the free() that matches a malloc() must be in the same function.

link|flag
so, I could do something like free(str) out of the function or free(somefunction)? – Hector Villalobos Aug 20 at 15:02
Yes indeed. Just like you can do with malloc(), which is after all just another function. – Neil Butterworth Aug 20 at 15:10
vote up 0 vote down

If you intend to return the address of the block you should not free() the block but instead rely on the calling code to free() it later. This is called onwership passing.

If you free it in the function and return the pointer the calling code will run into undefined behavior trying to access the already freed block.

link|flag
vote up 0 vote down

You should free all the allocated space but if you return its because you will use those memory space in other parts of the program, so after you use it you should free. See every place in the code that calls the function and free the space after you use the returned value.

link|flag

Your Answer

Get an OpenID
or

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