diff options
author | Max Kellermann <max@musicpd.org> | 2019-12-23 14:19:58 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-12-23 14:20:09 +0100 |
commit | f1116c92582637918d5de31ac33cde8256401dc2 (patch) | |
tree | 99c1bb4413eca1f07f8b16701b79235adb19a787 | |
parent | d01fb6730a7ac889f104490022c9dbb581e45db2 (diff) |
event/Loop: remove bogus assertion
Can fail if somebody calls Break().
-rw-r--r-- | src/event/Loop.cxx | 1 |
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 } |