diff options
author | Graham Linden <graham@lindenlab.com> | 2013-06-15 07:19:23 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2013-06-15 07:19:23 -0700 |
commit | d75667560c35a578cc3876bde485ca2a44604992 (patch) | |
tree | 5273de0017b3e164c53e82e04261d7cc229fee05 | |
parent | f782e0192009b249edcb30ca2a5418ec7c1ddfa4 (diff) |
Silence spurious asserts when pool is cleared at exactly it's limit
-rwxr-xr-x | indra/llcommon/llapr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llapr.cpp b/indra/llcommon/llapr.cpp index a0802c6adf..b7815b0e35 100755 --- a/indra/llcommon/llapr.cpp +++ b/indra/llcommon/llapr.cpp @@ -226,7 +226,7 @@ void LLVolatileAPRPool::clearVolatileAPRPool() llassert_always(mNumActiveRef > 0) ; } - llassert(mNumTotalRef < (FULL_VOLATILE_APR_POOL << 2)) ; + llassert(mNumTotalRef <= (FULL_VOLATILE_APR_POOL << 2)) ; } BOOL LLVolatileAPRPool::isFull() |