on GetAttrPath where the file doesn't exist and we ignore the error, return false as if the attribute didn't exist

This commit is contained in:
Glenn Maynard
2006-10-15 04:01:12 +00:00
parent f0227238a5
commit 01d6504058
+1 -3
View File
@@ -479,9 +479,7 @@ bool ActorUtil::GetAttrPath( const XNode *pNode, const RString &sName, RString &
sOut = sDir+sOut;
}
ActorUtil::ResolvePath( sOut, ActorUtil::GetWhere(pNode) );
return true;
return ActorUtil::ResolvePath( sOut, ActorUtil::GetWhere(pNode) );
}
apActorCommands ActorUtil::ParseActorCommands( const RString &sCommands, const RString &sName )