13
0

Got rid of (possibly?) false assertion (not present in 2.0 and caused crashes).

git-svn-id: svn://localhost/ardour2/trunk@1818 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2007-05-10 05:29:26 +00:00
parent 0c0879ca1c
commit 3f75517610

View File

@ -116,7 +116,9 @@ Source::set_state (const XMLNode& node)
if ((prop = node.property ("timestamp")) != 0) {
sscanf (prop->value().c_str(), "%ld", &_timestamp);
}
assert(_name.find("/") == string::npos);
// Don't think this is valid, absolute paths fail
//assert(_name.find("/") == string::npos);
return 0;
}