fixed memory leak in xmltree
git-svn-id: svn://localhost/trunk/ardour2@307 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
98046ce92d
commit
cfbc1cc8e5
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user