Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that an invalid pointer leads to undefined behaviour but how does free know whether a pointer is valid or not?

Is there kind of a checksum at the beginning of each block in free list? something like:

if((*ptr) == 'CHECKSUM'))
  free
else
  do something undefined

?

Thanks for your help. regards

share|improve this question
3  
Usually, it doesn't know, and just crashes (or corrupts something). – Oli Charlesworth Jun 12 '12 at 16:37
Find answer for your question here stackoverflow.com/questions/1119134/how-do-malloc-and-free-work – Viswesn Jun 12 '12 at 17:00
It doesn't have to know. The whole point is that it's allowed to assume the argument is either null (in which case it does nothing) or a pointer to a object obtained by (or as if by) malloc. – R.. Jun 12 '12 at 18:33

4 Answers

up vote 4 down vote accepted

I know that an invalid pointer leads to undefined behaviour but how does free know whether a pointer is valid or not?

The only check is whether the pointer is null or not. If it's a null pointer, free (by specification) will do nothing.

Otherwise, free just tries to "free" the memory, making the assumption that it was memory allocated by malloc, calloc, or realloc, which can make anything happen (typically bad things) - hence "undefined behavior."

share|improve this answer
oh that was fast :) thank you. – ubuntumazze Jun 12 '12 at 16:43
That's why it's a good idea always to set your pointer to NULL immediately after you've freed it. – Mr Lister Jun 12 '12 at 19:13
Interesting - why the downvote? – Reed Copsey Jun 13 '12 at 17:57

There might be. But in general, it doesn't. For many implementations, free just assumes its input is valid and plows right ahead as though that's true. It is perfectly within its rights to do that.

This is why the behaviour is "undefined": it's impossible to predict what'll happen if the pointer isn't valid. Random areas of memory might get trashed, during the operation of free and/or later when some other heap operation is performed; potentially leading to unpredictable behaviour in unrelated code. The program may crash immediately in free, or later in some apparently unrelated locations.

share|improve this answer

It doesn't know. It just supposes it is valid and acts appropriately.

If this assumption was wrong, destruction of important structures might have occured - and what happens then, is not known. Thus the undefined behaviour.

share|improve this answer

Since the pointer is invalid, free tries to read the "book-keeping information" as if the pointer was returned by malloc and valid, which usually leads to freeing some random address pointed by that invalid pointer, leading to corruption/crash etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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