From f67e50257ecc5c2648507bcdc29eff0c0daa53c1 Mon Sep 17 00:00:00 2001 From: Jean-Yves Avenard Date: Thu, 27 Jun 2013 16:56:23 +1000 Subject: [PATCH] Don't return early when deleting a client Done so the log contains more information --- mythtv/libs/libmythtv/AirPlay/mythraopdevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythtv/libs/libmythtv/AirPlay/mythraopdevice.cpp b/mythtv/libs/libmythtv/AirPlay/mythraopdevice.cpp index 701f30311d5..e6f496e29cc 100644 --- a/mythtv/libs/libmythtv/AirPlay/mythraopdevice.cpp +++ b/mythtv/libs/libmythtv/AirPlay/mythraopdevice.cpp @@ -240,7 +240,7 @@ void MythRAOPDevice::deleteClient(void) LOG(VB_GENERAL, LOG_INFO, LOC + "Removing client connection."); delete *it; m_clients.erase(it); - return; + break; } ++it; }