aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-11-26 15:22:08 +0100
committerHarald Welte <laforge@gnumonks.org>2016-12-16 11:56:44 +0000
commit1f2bb6e93e71b64f0dce6d64420c5b62a6847e85 (patch)
treeab75f7da3cfad726d035d240bce90fcb83ded04e /src
parent5395073fff9870e82358721126062d501ea4ad31 (diff)
struct pcu_l1_meas_ts: initialize ms_i_level
Change-Id: I93de7589d746b91ba26b1b36bf2690f125277cd0 Fixes: Coverity CID 57953
Diffstat (limited to 'src')
-rw-r--r--src/pcu_l1_if.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pcu_l1_if.h b/src/pcu_l1_if.h
index d9d970da..9ab46a89 100644
--- a/src/pcu_l1_if.h
+++ b/src/pcu_l1_if.h
@@ -57,7 +57,8 @@ struct pcu_l1_meas_ts {
}
pcu_l1_meas_ts() :
- have_ms_i_level(0)
+ have_ms_i_level(0),
+ ms_i_level(0)
{}
#endif
};