1
0
Fork 0

Merge branch 'devel' of ssh://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
James 2014-10-15 10:53:17 +01:00
commit 7bcac607bb
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ static void FreeAuthCacheInfo (TRI_vocbase_auth_cache_t* cached) {
TRI_Free(TRI_CORE_MEM_ZONE, cached->_hash); TRI_Free(TRI_CORE_MEM_ZONE, cached->_hash);
} }
if (cached->_username == nullptr) { if (cached->_username != nullptr) {
TRI_Free(TRI_CORE_MEM_ZONE, cached->_username); TRI_Free(TRI_CORE_MEM_ZONE, cached->_username);
} }