zapit/capmt: fix uninitialized ca_map_t no_camap

Origin commit data
------------------
Branch: ni/coolstream
Commit: 5077be0679
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-01-22 (Mon, 22 Jan 2018)

Origin message was:
------------------
- zapit/capmt: fix uninitialized ca_map_t no_camap

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2018-01-22 14:18:59 +01:00
parent a8bbad2772
commit ac6c382a7c

View File

@@ -438,7 +438,7 @@ bool CCamManager::SetMode(t_channel_id channel_id, enum runmode mode, bool start
} else {
INFO("\033[33m (oldmask != newmask) || force_update) - no CI needed\033[0m");
//no CI needed
ca_map_t no_camap;
ca_map_t no_camap = std::set<int>();
cam->sendCaPmt(channel->getChannelID(), buffer, len, CA_SLOT_TYPE_CI, false /*channel->scrambled*/, no_camap /*channel->camap*/, mode, start);
}
}