diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:39:52 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:39:52 +0000 |
commit | 33a92be286e2b63f76b9a032e5912806d717959f (patch) | |
tree | db6dff26239f3ab6dc05b1438815694771f6f95b /indra/llcommon | |
parent | 193f2e2edc1ade7a211c57a60bc42687aab036d4 (diff) |
CID-269
Checker: UNINIT_CTOR
Function: LLWorkerClass::LLWorkerClass(LLWorkerThread *, const std::basic_string<char, std::char_traits<char>, std::allocator<char>>&)
File: /indra/llcommon/llworkerthread.cpp
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llworkerthread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcommon/llworkerthread.cpp b/indra/llcommon/llworkerthread.cpp index 82c736266d..1b0e03cb2a 100644 --- a/indra/llcommon/llworkerthread.cpp +++ b/indra/llcommon/llworkerthread.cpp @@ -188,6 +188,7 @@ LLWorkerClass::LLWorkerClass(LLWorkerThread* workerthread, const std::string& na : mWorkerThread(workerthread), mWorkerClassName(name), mRequestHandle(LLWorkerThread::nullHandle()), + mRequestPriority(LLWorkerThread::PRIORITY_NORMAL), mMutex(NULL), mWorkFlags(0) { |