From 615eb3f0ea192b6f6243aaeac1b945945a876774 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 13 Nov 2011 15:21:03 +0100 Subject: [PATCH] OsmoLogChan: Make sure mL1 and mSACCHL1 are initialized to NULL --- public-trunk/GSM/OsmoLogicalChannel.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public-trunk/GSM/OsmoLogicalChannel.h b/public-trunk/GSM/OsmoLogicalChannel.h index db420d1..f385cde 100644 --- a/public-trunk/GSM/OsmoLogicalChannel.h +++ b/public-trunk/GSM/OsmoLogicalChannel.h @@ -130,7 +130,8 @@ public: Specific sub-class initializers allocate new components as needed. */ OsmoLogicalChannel(OsmoTS *osmo_ts, unsigned int ss_nr) - :mSACCHL1(NULL) + :mSACCHL1(NULL), + mL1(NULL) { mTS = osmo_ts; mSS = ss_nr;