Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed Mar 12, 2024
1 parent 556afde commit 7ddaed7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/tlTimeline/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,7 @@ namespace tl
// Clear requests.
if (clearRequests)
{
std::vector<std::vector<uint64_t> > ids;
ids.resize(1 + p.thread.compare.size());
std::vector<std::vector<uint64_t> > ids(1 + p.thread.compare.size());
for (const auto& i : p.thread.videoDataRequests)
{
for (size_t j = 0; j < i.second.size() && j < ids.size(); ++j)
Expand Down

0 comments on commit 7ddaed7

Please sign in to comment.