Skip to content

Commit

Permalink
src/core/vsthreadpool.cpp: a temporary workaround for issue 7
Browse files Browse the repository at this point in the history
Signed-off-by: akarin <[email protected]>
  • Loading branch information
AkarinVS committed Nov 12, 2022
1 parent 8fb4730 commit 147b911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/vsthreadpool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ void VSThreadPool::runTasks(std::atomic<bool> &stop) {
/////////////////////////////////////////////////////////////////////////////////////////////
// Handle frames that were requested
bool requestedFrames = frameContext->reqList.size() > 0 && !frameProcessingDone;
bool needsSort = false;
bool needsSort = !false; // see issue 7.
if (f && requestedFrames)
core->logFatal("A frame was returned at the end of processing by " + node->name + " but there are still outstanding requests");

Expand Down

0 comments on commit 147b911

Please sign in to comment.