From f1116c92582637918d5de31ac33cde8256401dc2 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Mon, 23 Dec 2019 14:19:58 +0100
Subject: [PATCH] event/Loop: remove bogus assertion

Can fail if somebody calls Break().
---
 src/event/Loop.cxx | 1 -
 1 file changed, 1 deletion(-)

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
 }