db/UpdateGlue: relax assertion

Fixes assertion failure when update gets launched during MPD startup.
This commit is contained in:
Max Kellermann 2014-02-05 10:03:28 +01:00
parent d380db25be
commit 2c70251df1

View File

@ -77,7 +77,7 @@ UpdateService::Task(void *ctx)
void
UpdateService::StartThread(UpdateQueueItem &&i)
{
assert(GetEventLoop().IsInside());
assert(GetEventLoop().IsInsideOrNull());
progress = UPDATE_PROGRESS_RUNNING;
modified = false;
@ -104,7 +104,7 @@ UpdateService::GenerateId()
unsigned
UpdateService::Enqueue(const char *path, bool discard)
{
assert(GetEventLoop().IsInside());
assert(GetEventLoop().IsInsideOrNull());
if (progress != UPDATE_PROGRESS_IDLE) {
const unsigned id = GenerateId();