mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Don't operate on empty vector.
This commit is contained in:
parent
bb121b29e3
commit
0ff6d6364b
@ -8392,6 +8392,8 @@ void View::DrawFindZone()
|
||||
}
|
||||
}
|
||||
}
|
||||
if( !vec.empty() )
|
||||
{
|
||||
auto mid = vec.begin() + m_findZone.selSortActive;
|
||||
pdqsort_branchless( mid, vec.end() );
|
||||
std::inplace_merge( vec.begin(), mid, vec.end() );
|
||||
@ -8403,6 +8405,7 @@ void View::DrawFindZone()
|
||||
m_findZone.selSortActive = act;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if( tmin != std::numeric_limits<int64_t>::max() && !m_findZone.sorted.empty() )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user