Skip to content
Snippets Groups Projects
Commit 67c40104 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

MAINT-5011: Ensure BlockTimer::mStartTime is unconditionally set.

Previous logic could possibly leave mStartTime uninitialized, producing fatal
warnings with gcc 4.7.
parent fe49126d
No related branches found
No related tags found
No related merge requests found
...@@ -296,7 +296,16 @@ LL_FORCE_INLINE BlockTimer::BlockTimer(BlockTimerStatHandle& timer) ...@@ -296,7 +296,16 @@ LL_FORCE_INLINE BlockTimer::BlockTimer(BlockTimerStatHandle& timer)
{ {
#if LL_FAST_TIMER_ON #if LL_FAST_TIMER_ON
BlockTimerStackRecord* cur_timer_data = LLThreadLocalSingletonPointer<BlockTimerStackRecord>::getInstance(); BlockTimerStackRecord* cur_timer_data = LLThreadLocalSingletonPointer<BlockTimerStackRecord>::getInstance();
if (!cur_timer_data) return; if (!cur_timer_data)
{
// How likely is it that
// LLThreadLocalSingletonPointer<T>::getInstance() will return NULL?
// Even without researching, what we can say is that if we exit
// without setting mStartTime at all, gcc 4.7 produces (fatal)
// warnings about a possibly-uninitialized data member.
mStartTime = 0;
return;
}
TimeBlockAccumulator& accumulator = timer.getCurrentAccumulator(); TimeBlockAccumulator& accumulator = timer.getCurrentAccumulator();
accumulator.mActiveCount++; accumulator.mActiveCount++;
// keep current parent as long as it is active when we are // keep current parent as long as it is active when we are
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment