Skip to content

Commit

Permalink
Don't return early when deleting a client
Browse files Browse the repository at this point in the history
Done so the log contains more information
  • Loading branch information
jyavenard committed Jun 27, 2013
1 parent 62a1546 commit f67e502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/AirPlay/mythraopdevice.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit f67e502

Please sign in to comment.