Fixed LLErrors killing the viewer when no username is provided on login.
This commit is contained in:
@@ -105,7 +105,7 @@ BOOL LLPanelLogin::sCapslockDidNotification = FALSE;
|
|||||||
static bool nameSplit(const std::string& full, std::string& first, std::string& last) {
|
static bool nameSplit(const std::string& full, std::string& first, std::string& last) {
|
||||||
std::vector<std::string> fragments;
|
std::vector<std::string> fragments;
|
||||||
boost::algorithm::split(fragments, full, boost::is_any_of(" ."));
|
boost::algorithm::split(fragments, full, boost::is_any_of(" ."));
|
||||||
if (fragments.size() == 0)
|
if (!fragments.size() || !fragments[0].length())
|
||||||
return false;
|
return false;
|
||||||
first = fragments[0];
|
first = fragments[0];
|
||||||
if (fragments.size() == 1)
|
if (fragments.size() == 1)
|
||||||
|
|||||||
Reference in New Issue
Block a user