fix uninitialized vars in demux

master
Andre Puschmann 6 years ago
parent fc432adb66
commit 76f93df8b6

@ -30,7 +30,16 @@
namespace srsue { namespace srsue {
demux::demux() : mac_msg(20), mch_mac_msg(20), pending_mac_msg(20), rlc(NULL) demux::demux() :
mac_msg(20),
mch_mac_msg(20),
pending_mac_msg(20),
rlc(NULL),
is_uecrid_successful(false),
phy_h(nullptr),
log_h(nullptr),
time_alignment_timer(nullptr),
mac(nullptr)
{ {
} }

Loading…
Cancel
Save