capmt: avoid use cam after delete

(re-add this commit; was removed by mistake)
This commit is contained in:
Jacek Jendrzej
2019-05-09 15:57:15 +02:00
committed by Thilo Graf
parent 387bb9076e
commit 3e78fe14e5

View File

@@ -297,7 +297,7 @@ bool CCamManager::SetMode(t_channel_id channel_id, enum runmode mode, bool start
cam->sendMessage(NULL, 0, false);
/* clean up channel_map with stopped record/stream/pip services NOT live-tv */
it = channel_map.find(channel_id);
if(it != channel_map.end() && newmask != 0)
if(it != channel_map.end() && newmask != 0 && it->second != cam)
{
delete it->second;
channel_map.erase(channel_id);