malloc/free is there a way to see if all match?
I am exposed to this project where malloc is liberally spread all over the place and wonder if memory get freed up in all cases. I would hate to see that, after a month of usage the thing blew up. A very subtle error in this respect would never show up during development where the program is reloaded many times a day, whereas at a customer where a reset may be a yearly event a small error in this respect would show up eventually.
Erik
... for detecting so-called "memory leaks"
More common for "desktop" stuff, admittedly.
You could (should?) instrument your malloc and free so that you can observe...