I read somewhere that it is disastrous to use free to get rid of an object not created by calling malloc, is this true? why?
|
|
|||||||||||||||||||
|
|
That's undefined behavior - never try it. Let's see what happens when you try to The latter is used quite often and here's how i is supposed to work. When you call malloc() the heap manager allocates a slightly bigger block, stores service data at the beginning and returns an offset pointer. Smth like:
then Implementations may vary but you should never make any specific assumptions. Only call |
|||||||||||||||
|
|
It is undefined behaviour. And logically, if behaviour is undefined, you cannot be sure what has happened, and if the program is still operating properly. |
|||||||||||||||||||
|
|
By the standard, it's "undefined behavior" - i.e. "anything can happen". That's usually bad things, though. In practice: Example: A disastrous scenario: You free() a pointer to a local variable on the stack. You are "lucky" because the modification goes into irrelevant stack space. However, part of the stack is now on your free list. Because of the allocator design and your allocation patterns, malloc is unlikely to return this block. Later, in an completely unrelated part of the program, you actually do get this block as malloc result, writing to it trashes some local variables up the stack, and when returning some vital pointer contains garbage and your app crashes. Symptoms, repro and location are completely unrelated to the actual cause. Debug that. |
||||
|
|
|
Some people have pointed out here that this is "undefined behavior". I'm going to go farther and say that on some implementations, this will either crash your program or cause data corruption. It has to do with how "malloc" and "free" are implemented. One possible way to implement malloc/free is to put a small header before each allocated region. On a malloc'd region, that header would contain the size of the region. When the region is freed, that header is checked and the region is added to the appropriate freelist. If this happens to you, this is bad news. For example, if you free an object allocated on the stack, suddenly part of the stack is in the freelist. Then malloc might return that region in response to a future call, and you'll scribble data all over your stack. Another possibility is that you free a string constant. If that string constant is in read-only memory (it often is), this hypothetical implementation would cause a segfault and crash either after a later malloc or when free adds the object to its freelist. This is a hypothetical implementation I am talking about, but you can use your imagination to see how it could go very, very wrong. Some implementations are very robust and are not vulnerable to this precise type of user error. Some implementations even allow you to set environment variables to diagnose these types of errors. Valgrind and other tools will also detect these errors. |
||||
|
|
Strictly speaking, this is not true. calloc() and realloc() are valid object sources for free(), too. ;) |
|||||||
|
|
It would certainly be possible for an implementation of However since the standard says that this isn't a requirement most implementation will treat all pointers coming into free as valid. |
|||
|
|
|
Please have a look at what undefined behavior means. This means, it can do whatever you want it to do, provided that you make the necessary modifications to In fact, there could be platforms that (themselves) define this behavior. I don't know of any, but there could be some. There are several garbage collecting / logging malloc() implementations that might let it fail more gracefully while logging the event. But thats implementation , not standards defined behavior. Undefined simply means don't count on any kind of consistent behavior unless you implement it yourself without breaking any defined behavior. Finally, implementation defined does not always mean defined by the host system. Many programs link against (and ship) uclibc. In that case, the implementation is self contained, consistent and portable. |
||||
|
|
