summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-12-23 14:19:58 +0100
committerMax Kellermann <max@musicpd.org>2019-12-23 14:20:09 +0100
commitf1116c92582637918d5de31ac33cde8256401dc2 (patch)
tree99c1bb4413eca1f07f8b16701b79235adb19a787 /src
parentd01fb6730a7ac889f104490022c9dbb581e45db2 (diff)
event/Loop: remove bogus assertion
Can fail if somebody calls Break().
Diffstat (limited to 'src')
-rw-r--r--src/event/Loop.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/event/Loop.cxx b/src/event/Loop.cxx
index d3de427c9..196d7475d 100644
--- a/src/event/Loop.cxx
+++ b/src/event/Loop.cxx
@@ -221,7 +221,6 @@ EventLoop::Run() noexcept
} while (!quit);
#ifndef NDEBUG
- assert(busy);
assert(thread.IsInside());
#endif
}