diff --git a/indra/newview/llsecapi.h b/indra/newview/llsecapi.h index 5cde0d549eb148b5e95a8088ccb489dd02d6d0a6..69b6b32923505fd7aaee0774e0e5b6fc07f9e584 100644 --- a/indra/newview/llsecapi.h +++ b/indra/newview/llsecapi.h @@ -491,7 +491,7 @@ class LLSecAPIHandler : public LLThreadSafeRefCount virtual bool hasCredentialMap(const std::string& storage, const std::string& grid)=0; - // returns true im map is empty or does not exist + // returns true if map is empty or does not exist virtual bool emptyCredentialMap(const std::string& storage, const std::string& grid)=0; diff --git a/indra/newview/llsechandler_basic.cpp b/indra/newview/llsechandler_basic.cpp index 2932ae45a3a6275694201c38e1dcd1c586ec0c7e..55e49100c3538a9bfb9ad2e80cf6d00a63626dcd 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