From 336f509941033481168a87e6f23e364676674ac8 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 10 Aug 2009 08:01:12 +0200 Subject: ipaccess.c: Make the compiler happy... The compiler thinks the variables might not be initialized, we know it is wrong... but just make it happy. --- openbsc/src/input/ipaccess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openbsc/src/input') diff --git a/openbsc/src/input/ipaccess.c b/openbsc/src/input/ipaccess.c index e98b22405..7d7e33ca4 100644 --- a/openbsc/src/input/ipaccess.c +++ b/openbsc/src/input/ipaccess.c @@ -169,7 +169,7 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg, { struct tlv_parsed tlvp; u_int8_t msg_type = *(msg->l2h); - u_int16_t site_id, bts_id, trx_id; + u_int16_t site_id = 0, bts_id = 0, trx_id = 0; struct gsm_bts *bts; int ret = 0; -- cgit v1.2.3