vote up 2 vote down star
1

OK, I have this piece of code:

typedef struct faux_crit
{
  char dna[DNALEN+1]; //#define'd to 16
  int x, y;
  int age;
  int p;
  int dir;
} crit;

crit *makeguy(int x, int y)
{
  crit *guy;
  guy = (crit *) malloc(sizeof(crit));
  strcpy(guy->dna, makedna());
  guy->x = x;
  guy->y = y;
  guy->age = guy->p = guy->dir = 0;
  return guy;
}

char *makedna()
{
  char *dna;
  int i;
  dna = (char *) malloc(sizeof(char) * DNALEN+1);
  for(i = 0; i < DNALEN; i++)
    dna[i] = randchar();
  return dna;
}

int main()
{
  int i;
  crit *newguy;
  srand((unsigned) time(0));

  newguy = makeguy(0, 0);
  /*[..]
   just printing things here
   */
  free(newguy);

  return 0;
}

I'd just want to know what did I wrong with managing memory, because valgrind reports a memory error. I presume it's the dna var in makedna, but when should I free it? I don't have access to it after leaving the function, and I need to return it, so I can't free it before that.

EDIT: Okay, thank you all.

flag

0% accept rate
3  
Please don't post links to your code. Instead, post the actual, minimal, compilable code that illustrates your problem, in-line with your question. – Neil Butterworth Aug 23 at 16:44

7 Answers

vote up 9 vote down

The easiest workaround is to change makeguy() like this:

char* dna = makedna();
strcpy(guy->dna, dna);
free(dna);

But this is not a good solution as you are allocating memory at one location and freeing it in other. It is better to do the malloc and free at the same place. So I recommend to change makedna() to:

void* makedna(char* dna, int dna_len)
{
  int i;
  for(i = 0; i < dna_len; i++)
    dna[i] = randchar();
}

You can call makedna() like this:

char* dna = (char*)malloc(DNALEN+1);
makedna(dna, DNALEN);
dna[DNALEN] = 0;
strcpy(guy->dna, dna);
free(dna);

Now makedna() only does what it is expected to do: make a dna sequence. Memory management should be taken care of by the caller. Moreover, this solution gives the flexibility of using a static char array, if that is required at a different call site.

link|flag
+1 for making excellent point about removing redundant allocation. – Chris Jester-Young Aug 23 at 16:18
2  
Note that even the caller does not need to allocate memory since guy->dna is already allocated. Also you still have problems with strcpy and null termination. – quamrana Aug 23 at 16:23
1  
Yes the caller need not allocate memory. Thats what I meant by "Moreover, this solution gives the flexibility of using a static char array, if that is required at a different call site". I fixed the null termination bug. Thanks for pointing that out. – Vijay Mathew Aug 24 at 4:47
vote up 3 vote down

You should change makedna() to take a parameter:

void makedna(char* dna)
{
  int i;
  for(i = 0; i < DNALEN; i++)
  {
    dna[i] = randchar();
  }
}

note the extra braces for clarity

and line 14 becomes:

makedna(guy->dna);

This avoids at least one set of messing about with malloc and free.
Edit:
Also this solution avoids any null-termination problems with strcpy.

link|flag
-1 for the "extra braces for style"; otherwise your post was a good one. – Chris Jester-Young Aug 23 at 16:16
1  
+1 for the "extra braces for style" – Neil Butterworth Aug 23 at 16:22
@Neil: Yay for coding style holy wars! :-P – Chris Jester-Young Aug 23 at 16:23
1  
@anyone: Its not coding style, so much as safety in the future when someone else adds another line below the for. Without braces its not always obvious that its not executed multiple times. With braces you have to think about whether you mean the extra line to be executed by 'for', or afterwards. – quamrana Aug 23 at 16:26
@Chris Downvoting someone simply because you disagree withn their programming style is obviously wrong, particularly when (as you pointed out) the answer was correct. – Neil Butterworth Aug 23 at 16:33
show 2 more comments
vote up 0 vote down

fbereton is right - you didn't need a malloc for DNA.

However, had you been storing malloc'd memory inside your structure, the key point is that you can't just free the structure and expect the other memory allocations to be freed. You'd want to free all the allocations inside the structure before freeing the structure itself.

link|flag
1  
The poster is not malloc'ing the dna variable in the struct, he is malloc'ing a local variable with the same name. Besides, I think he realized that in order for the free(guy) to be a simple call, he needed the dna member to be a statically allocated array. – paracycle Aug 23 at 16:16
vote up 7 vote down

You should do this:

char *tempdna = makedna();
strcpy(guy->dna, tempdna);
free(tempdna);

But for the strcpy to work, your makedna function needs to zero-terminate the string. At the end, just before the return, have:

dna[DNALEN] = 0;
link|flag
1  
+1 for dna[DNALEN] = 0; – Vijay Mathew Aug 23 at 16:16
1  
+1 for the same reason as Vijay. – paracycle Aug 23 at 16:17
There are still problems with strcpy, unless makedna is fixed to null terminate the string it creates. – quamrana Aug 23 at 16:30
2  
Huh? That's exactly what his dna[DNALEN] = 0; line is doing – GRB Aug 23 at 16:33
vote up 0 vote down

You guessed right. The problem is related to the makedna function. However, there is nothing wrong with that function. It is more about how you use it.

It is perfectly OK for makedna to return a pointer to allocated memory. However, it is up to the calling function to release that memory after it is done with it.

Thus I recommend you change:

crit *guy;
guy = (crit *) malloc(sizeof(crit));
strcpy(guy->dna, makedna());

to:

crit *guy;
guy = (crit *) malloc(sizeof(crit));
char * dna = makedna();
strcpy(guy->dna, dna);
// Now that we copied the content of the dna string
// we can free it.
free(dna);

EDIT: As Chris Jester-Young points out, there was a small problem with your makedna function as well. You need to null-terminate the value you return from that function so that strcpy can work correctly. Add this in your makedna function before you return the result:

dna[DNALEN] = 0;
link|flag
1  
There are still problems with strcpy, unless makedna is fixed to null terminate the string it creates. – quamrana Aug 23 at 16:27
Yes, that is right. I had missed that originally. Will edit the post to reflect that. – paracycle Aug 23 at 16:36
vote up -1 vote down

Line 3 : dna[DNALEN+1] // statically declared array containing [DNALEN+1] elements - memory is already assigned Line 25: no need for the malloc as the array already exists

link|flag
2  
That Line 25 refers to a local variable named dna, not the member of the struct which is what you are referring to. – paracycle Aug 23 at 16:10
vote up 3 vote down

You should store the pointer of makedna() before passing it to strcpy so you will be able to free it once you're done.

char* dna = makedna();
strcpy(guy->dna, dna);
free(dna);
link|flag
There are still problems with strcpy, unless makedna is fixed to null terminate the string it creates. – quamrana Aug 23 at 16:28
Indeed, I admittedly forgot to mention that. Take a look at Chris's answer. – GRB Aug 23 at 16:29

Your Answer

Get an OpenID
or

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