Yup - stack-based unwinding. Modern C++ Design has the general solution but in this case you can use
struct Cleanup {
void* toFree;
Cleanup(void* toFree) : toFree(toFree) {}
~Cleanup() { free(toFree); }
private:
Cleanup(Cleanup&);
void oeprator=(Cleanupoperator=(Cleanup&);
};
No matter what happens with your std::string, free(toFree) will be called when your Cleanup object goes out of scope.
