show/hide this revision's text 2 typo

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.

show/hide this revision's text 1

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=(Cleanup&);
};

No matter what happens with your std::string, free(toFree) will be called when your Cleanup object goes out of scope.