Fixes coverity 369569

This commit is contained in:
AlaiaL 2021-04-23 15:05:49 +02:00 committed by Andre Puschmann
parent 0535473895
commit beaa1b3e24
1 changed files with 3 additions and 3 deletions

View File

@ -115,9 +115,9 @@ private:
std::map<uint32_t, user_interface> users;
rlc_interface_pdcp* rlc;
rrc_interface_pdcp* rrc;
gtpu_interface_pdcp* gtpu;
rlc_interface_pdcp* rlc = nullptr;
rrc_interface_pdcp* rrc = nullptr;
gtpu_interface_pdcp* gtpu = nullptr;
srsran::task_sched_handle task_sched;
srslog::basic_logger& logger;
};