Assorted fixes

This commit is contained in:
Siana Gearz
2011-02-12 23:33:11 +01:00
parent d97f87b05f
commit 72c4c52372
6 changed files with 23 additions and 15 deletions

View File

@@ -521,7 +521,8 @@ BOOL LLCacheName::getFullName(const LLUUID& id, std::string& fullname)
{
std::string first_name, last_name;
BOOL res = getName(id, first_name, last_name);
fullname = first_name + " " + last_name;
if(res)
fullname = first_name + " " + last_name;
return res;
}