laforge
/
openbts-osmo
Archived
1
0
Fork 0

OsmoLogChan: Make sure mL1 and mSACCHL1 are initialized to NULL

This commit is contained in:
Harald Welte 2011-11-13 15:21:03 +01:00
parent 12a1ff7317
commit 615eb3f0ea
1 changed files with 2 additions and 1 deletions

View File

@ -130,7 +130,8 @@ public:
Specific sub-class initializers allocate new components as needed. Specific sub-class initializers allocate new components as needed.
*/ */
OsmoLogicalChannel(OsmoTS *osmo_ts, unsigned int ss_nr) OsmoLogicalChannel(OsmoTS *osmo_ts, unsigned int ss_nr)
:mSACCHL1(NULL) :mSACCHL1(NULL),
mL1(NULL)
{ {
mTS = osmo_ts; mTS = osmo_ts;
mSS = ss_nr; mSS = ss_nr;