Commit 60486bcc authored by Max Kellermann's avatar Max Kellermann

db/upnp/WorkQueue: remove redundant n_workers_exited check from IsOK()

parent 79eed518
......@@ -227,7 +227,7 @@ public:
private:
bool IsOK()
{
return ok && n_workers_exited == 0 && n_threads > 0;
return ok && n_threads > 0;
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment