vote up 1 vote down star
int main(void) {
  int* p = (int*) malloc(sizeof(int));
  int* q = (int*) malloc(sizeof(int));
  *p = 10;
  *q = 20;
  p = q;
  printf(ā€œ%d %dā€, *p, *q);
  free(p); 
  free(q);
}

Why does the above code contain use-after-free error? There's no more expression after free(p) and free(q). Obviously we are not using them anymore!

flag

40% accept rate
7  
Perhaps the line p = q; should be *p = *q;? – Steve Jessop Nov 5 at 1:52

4 Answers

vote up 12 vote down check

You have two problems here.

First, you are deleting the same heap variable twice:

  free(p); 
  free(q);

Second, you have a memory-leak, because the variable created by p is no longer accessible.


Notice that onebyone's comment is really important. If you change the line:

p = q;

into:

*p = *q;

There would be no problems at all in your code :) Hello Pointers!

link|flag
Yeap................. – Macroideal Nov 5 at 3:29
vote up 2 vote down

Because here:

p = q;

...you're throwing away the old value of p. You now have two copies of the pointer that was returned by the second malloc, and none of the pointer that was returned by the first malloc.

So then here:

free(p); 
free(q);

...the same pointer value gets passed to free twice: use-after-free error. The other pointer value never gets passed to free at all: memory leak.

link|flag
vote up 2 vote down

Since q and p point to the same memory at the point you are freeing them, you're effectively freeing the memory twice.

link|flag
vote up 3 vote down

You set p to q, so you are free()ing it twice.

link|flag

Your Answer

Get an OpenID
or

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