summaryrefslogtreecommitdiff
path: root/indra/newview/llsecapi.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-04-16 22:28:28 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-04-16 22:28:36 +0300
commita5eb15da0a89c6f9df7d426c0c3c41df445cfd2f (patch)
tree46010b6f6a1a189db454dbecf6423c3673cc444d /indra/newview/llsecapi.cpp
parent668e6e359bd0e8df6c643473298c0ea3f34a7099 (diff)
SL-13008 Crash after a second login attempt with unsupported name format
Diffstat (limited to 'indra/newview/llsecapi.cpp')
-rw-r--r--indra/newview/llsecapi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsecapi.cpp b/indra/newview/llsecapi.cpp
index 72d7cf1e45..fe14f2b495 100644
--- a/indra/newview/llsecapi.cpp
+++ b/indra/newview/llsecapi.cpp
@@ -117,7 +117,7 @@ LLSD LLCredential::getLoginParams()
else if (mIdentifier["type"].asString() == "account")
{
result["username"] = mIdentifier["account_name"];
- result["passwd"] = mAuthenticator["secret"];
+ result["passwd"] = mAuthenticator["secret"].asString();
username = result["username"].asString();
}
}