summaryrefslogtreecommitdiff
path: root/indra/llcommon/lltrace.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-12-10 12:50:23 -0800
committerRichard Linden <none@none>2013-12-10 12:50:23 -0800
commitd4f3fe3c5691348b72729ba57cef337c1dca0141 (patch)
tree0af459d66463e94d3c29b1ed22ddc7ff1dda7458 /indra/llcommon/lltrace.cpp
parent8d5605e09f144e7879c34e6093b5c09c191f46a6 (diff)
SH-4653 FIX Interesting: Viewer crashes while reading chat history
Diffstat (limited to 'indra/llcommon/lltrace.cpp')
-rw-r--r--indra/llcommon/lltrace.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lltrace.cpp b/indra/llcommon/lltrace.cpp
index 14e830af7d..54079a4689 100644
--- a/indra/llcommon/lltrace.cpp
+++ b/indra/llcommon/lltrace.cpp
@@ -40,7 +40,7 @@ StatBase::StatBase( const char* name, const char* description )
mDescription(description ? description : "")
{
#ifndef LL_RELEASE_FOR_DOWNLOAD
- if (LLTrace::get_thread_recorder() != NULL)
+ if (LLTrace::get_thread_recorder().notNull())
{
LL_ERRS() << "Attempting to declare trace object after program initialization. Trace objects should be statically initialized." << LL_ENDL;
}