From 147b91161f7b776d3bc3a0c72c365d3c7f65bc7f Mon Sep 17 00:00:00 2001 From: akarin Date: Sat, 12 Nov 2022 21:58:52 +0900 Subject: [PATCH] src/core/vsthreadpool.cpp: a temporary workaround for issue 7 Signed-off-by: akarin --- src/core/vsthreadpool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/vsthreadpool.cpp b/src/core/vsthreadpool.cpp index 3715b6436..4b2db48b5 100644 --- a/src/core/vsthreadpool.cpp +++ b/src/core/vsthreadpool.cpp @@ -189,7 +189,7 @@ void VSThreadPool::runTasks(std::atomic &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");