From 3bdeb8e8a80eafcb01c6bff8b763f09a1ca5122f Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Sat, 20 Apr 2013 00:28:36 +0200 Subject: [PATCH] TEMPORARILY disable erroring out during mesh upload --- indra/llcommon/llthread.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/indra/llcommon/llthread.cpp b/indra/llcommon/llthread.cpp index 8a2b6d0b5..4ddc58d18 100644 --- a/indra/llcommon/llthread.cpp +++ b/indra/llcommon/llthread.cpp @@ -486,10 +486,14 @@ LLThreadSafeRefCount::LLThreadSafeRefCount() : LLThreadSafeRefCount::~LLThreadSafeRefCount() { + llassert(mRef == 0); + /* TEMPORARILY disable erroring out on deleting this object with + nonzero reference count until the problem in AIStateMachine is fixed if (mRef != 0) { llerrs << "deleting non-zero reference" << llendl; } + */ } //============================================================================