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

This commit is contained in:
Max Kellermann
2014-01-14 11:43:18 +01:00
parent 79eed5182e
commit 60486bcc46

View File

@@ -227,7 +227,7 @@ public:
private: private:
bool IsOK() bool IsOK()
{ {
return ok && n_workers_exited == 0 && n_threads > 0; return ok && n_threads > 0;
} }
}; };