summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Linden <graham@lindenlab.com>2013-06-15 07:19:23 -0700
committerGraham Linden <graham@lindenlab.com>2013-06-15 07:19:23 -0700
commitd75667560c35a578cc3876bde485ca2a44604992 (patch)
tree5273de0017b3e164c53e82e04261d7cc229fee05
parentf782e0192009b249edcb30ca2a5418ec7c1ddfa4 (diff)
Silence spurious asserts when pool is cleared at exactly it's limit
-rwxr-xr-xindra/llcommon/llapr.cpp2
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()