diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-04 11:24:14 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-04 11:24:14 +0000 |
commit | 2c30ccf34d518ccedd0b3ffdeb2ba1da8d140a1d (patch) | |
tree | b2619ece4dc6795feb386afe7cc16bdfa197c97c /indra/llcommon/lltimer.cpp | |
parent | fd095d2785f740ea56e019e5bf0497444885add9 (diff) |
EXT-4754 Crash in LLEventTimer::updateClass
Diffstat (limited to 'indra/llcommon/lltimer.cpp')
-rw-r--r-- | indra/llcommon/lltimer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lltimer.cpp b/indra/llcommon/lltimer.cpp index 63634117b5..21e165ebc9 100644 --- a/indra/llcommon/lltimer.cpp +++ b/indra/llcommon/lltimer.cpp @@ -578,7 +578,7 @@ LLEventTimer::LLEventTimer(const LLDate& time) LLEventTimer::~LLEventTimer() { - llassert(!mBusy); // this LLEventTimer was destroyed from its own tick() function - bad. + llassert(!mBusy); // this LLEventTimer was destroyed from within its own tick() function - bad. if you want tick() to cause destruction of its own timer, make it return true. } //static |