From 298da0aeecaaa2be163950ed013407be173a6876 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 21 Oct 2018 11:17:11 +0200 Subject: 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 --- src/osmo-bsc/handover_fsm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3