13
0

fixed memory leak in xmltree

git-svn-id: svn://localhost/trunk/ardour2@307 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Jesse Chappell 2006-02-01 00:19:44 +00:00
parent 98046ce92d
commit cfbc1cc8e5

View File

@ -47,7 +47,7 @@ public:
bool initialized() const { return _initialized; };
XMLNode *root() const { return _root; };
XMLNode *set_root(XMLNode *n) { return _root = n; };
XMLNode *set_root(XMLNode *n) { _initialized = true; return _root = n; };
const string & filename() const { return _filename; };
const string & set_filename(const string &fn) { return _filename = fn; };