diff options
author | Richard Linden <none@none> | 2013-11-19 17:40:44 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2013-11-19 17:40:44 -0800 |
commit | 391ac367d6922f30bf3a186bc15e1fc38366eecf (patch) | |
tree | ca318051118f3e264ef424167c7a377445500f06 /indra/llui/llstatbar.cpp | |
parent | a868b7ed41d8b7d04ae47490564cdc35bcfbac1a (diff) |
SH-4634 FIX Interesting: Viewer crashes when receiving teleport offer
renamed fast timers to have unique names, changes instance tracker to never allow duplicates
Diffstat (limited to 'indra/llui/llstatbar.cpp')
-rwxr-xr-x | indra/llui/llstatbar.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llui/llstatbar.cpp b/indra/llui/llstatbar.cpp index bfdc6571c2..1bd2bc06f4 100755 --- a/indra/llui/llstatbar.cpp +++ b/indra/llui/llstatbar.cpp @@ -553,10 +553,10 @@ void LLStatBar::draw() void LLStatBar::setStat(const std::string& stat_name) { using namespace LLTrace; - const StatType<CountAccumulator>* count_stat; - const StatType<EventAccumulator>* event_stat; - const StatType<SampleAccumulator>* sample_stat; - const StatType<MemAccumulator>* mem_stat; + const StatType<CountAccumulator>* count_stat; + const StatType<EventAccumulator>* event_stat; + const StatType<SampleAccumulator>* sample_stat; + const StatType<MemAccumulator>* mem_stat; if ((count_stat = StatType<CountAccumulator>::getInstance(stat_name))) { |