Also sprach Rick Welykochy:
> 6.9 answer:
>
> You're probably not freeing the memory completely. Try replacing 'free(foo);' with
>
> free(foo);
> free(foo);
> free(foo);
For best results, you should clear the memory before freeing it, like so:
bzero(foo);
- Joe