aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-10-21 11:17:11 +0200
committerHarald Welte <laforge@gnumonks.org>2018-10-21 11:17:11 +0200
commit298da0aeecaaa2be163950ed013407be173a6876 (patch)
tree1eb21fb38bd60ea07129aae54a821cb214d81fd0
parentd4c391eab03ce768d7eaf483368d9cda4f9668df (diff)
handover_start_inter_bsc_in(): Uninitialized variable
This only afffects a log statement, so not really an issue. Change-Id: I8e5b164194855f78a266c1a4441730cc6c378d11 Fixes: Coverity CID#188829
-rw-r--r--src/osmo-bsc/handover_fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/handover_fsm.c b/src/osmo-bsc/handover_fsm.c
index 428608491..68230e149 100644
--- a/src/osmo-bsc/handover_fsm.c
+++ b/src/osmo-bsc/handover_fsm.c
@@ -522,7 +522,7 @@ void handover_start_inter_bsc_in(struct gsm_subscriber_connection *conn,
struct handover_in_req *req = &ho->inter_bsc_in;
int match_idx;
enum gsm48_chan_mode mode;
- bool full_rate;
+ bool full_rate = false;
uint16_t s15_s0;
struct osmo_fsm_inst *fi;