diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-03-23 14:01:30 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-03-23 14:01:30 +0000 |
commit | 3d373997ddd5c5c2e3a355464616db2fa8db5e17 (patch) | |
tree | 8a4f4ce0d89b93bdf5981e7f68be159fb5f4ecb1 /indra | |
parent | a375db6d756ceccae79eea17a0c261a361fce040 (diff) |
CID-449
Checker: FORWARD_NULL
Function: LLWorkerClass::checkWork(bool)
File: /indra/llcommon/llworkerthread.cpp
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llworkerthread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llworkerthread.cpp b/indra/llcommon/llworkerthread.cpp index 411977474b..2629237f7e 100644 --- a/indra/llcommon/llworkerthread.cpp +++ b/indra/llcommon/llworkerthread.cpp @@ -347,12 +347,12 @@ bool LLWorkerClass::checkWork(bool aborting) { mRequestHandle = LLWorkerThread::nullHandle(); clearFlags(WCF_HAVE_WORK); - return true ; } else { llassert_always(workreq); } + return true ; } LLQueuedThread::status_t status = workreq->getStatus(); |