diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2020-01-08 22:56:10 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2020-01-08 22:56:10 +0200 |
commit | c090cd32b8f6d0321d3785cf4a6f7edcd3936e87 (patch) | |
tree | e165050a67b9e77547c8c44180f34afbb21c6efc /indra/newview/llsechandler_basic.cpp | |
parent | ae013b5c825b303cc1695a7735d7268bbdaa4add (diff) |
SL-12486 Size check fix
Diffstat (limited to 'indra/newview/llsechandler_basic.cpp')
-rw-r--r-- | indra/newview/llsechandler_basic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsechandler_basic.cpp b/indra/newview/llsechandler_basic.cpp index 2932ae45a3..55e49100c3 100644 --- a/indra/newview/llsechandler_basic.cpp +++ b/indra/newview/llsechandler_basic.cpp @@ -1674,7 +1674,7 @@ bool LLSecAPIBasicHandler::emptyCredentialMap(const std::string& storage, const LLSD credential = getProtectedData(storage, grid); - return !credential.isMap() || credential.emptyMap(); + return !credential.isMap() || credential.size() == 0; } // Load map of credentials from specified credential store, given the grid |