I'm working on a C project (assignment for school). One of the demands is that in case of malloc()
failure, the program must free()
all allocated memory and exit()
.
Consider a case where function A()
constructs a linked-list and in each iteration it calls to another function, B()
. Now, if a malloc failure occured at B()
, it must free()
the memory it allocated but function A()
should do that as well.
Things are getting quite complicated when you have a tree of function calls larger than two.
In my previous project I used a flag to notify a malloc() failure - if a function uses another function which may use malloc()
, it has to check the flag right after. It worked, but code got kinda messy.
Is there a neat solution for this problem?
Of course, with "real" applications all memory is de-allocated by the OS, but I guess this demand is pedagogical..
Yes. The best (and conventional) way is to initialize every pointer value to zero. Then set it during the malloc() assignment. Ex: myPtr = malloc( 10 );
It will be zero in case of failure, and you check that. And finally, when you go about freeing, you always check the pointer value before calling free():
There is no need for an extra flag.