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/newview/llcallfloater.cpp | |
parent | fd095d2785f740ea56e019e5bf0497444885add9 (diff) |
EXT-4754 Crash in LLEventTimer::updateClass
Diffstat (limited to 'indra/newview/llcallfloater.cpp')
-rw-r--r-- | indra/newview/llcallfloater.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llcallfloater.cpp b/indra/newview/llcallfloater.cpp index 8cb240c7c2..bd4fae6ab6 100644 --- a/indra/newview/llcallfloater.cpp +++ b/indra/newview/llcallfloater.cpp @@ -678,7 +678,8 @@ void LLCallFloater::resetVoiceRemoveTimers() void LLCallFloater::removeVoiceRemoveTimer(const LLUUID& voice_speaker_id) { - mSpeakerDelayRemover->unsetActionTimer(voice_speaker_id); + bool delete_it = true; + mSpeakerDelayRemover->unsetActionTimer(voice_speaker_id, delete_it); } bool LLCallFloater::validateSpeaker(const LLUUID& speaker_id) |