From 87b19a06d7d506799802c461c02b30f5274c2bd3 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 3 Sep 2018 11:30:22 +0200 Subject: mncc: Fix missing conditional clause MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes following compilation warning: osmo-sip-connector/src/mncc.c: In function ‘check_disc_ind’: osmo-sip-connector/src/mncc.c:517:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] if (other_leg) ^~ Fixes: 008915ee41900c34ec0fd8df0c9f1d7c2cbdb3b2 ("Implement Cause Mapping") Change-Id: I5bdbc29a3f82bdc92b156c1f7df68c9503f85f8f --- src/mncc.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/mncc.c b/src/mncc.c index f41bb51..ae60321 100644 --- a/src/mncc.c +++ b/src/mncc.c @@ -514,9 +514,10 @@ static void check_disc_ind(struct mncc_connection *conn, const char *buf, int rc mncc_send(leg->conn, MNCC_REL_REQ, leg->callref); other_leg = call_leg_other(&leg->base); - if (other_leg) + if (other_leg) { other_leg->cause = data->cause.value; other_leg->release_call(other_leg); + } } static void check_rel_ind(struct mncc_connection *conn, const char *buf, int rc) @@ -533,9 +534,10 @@ static void check_rel_ind(struct mncc_connection *conn, const char *buf, int rc) else { struct call_leg *other_leg; other_leg = call_leg_other(&leg->base); - if (other_leg) + if (other_leg) { other_leg->cause = data->cause.value; other_leg->release_call(other_leg); + } } LOGP(DMNCC, LOGL_DEBUG, "leg(%u) was released.\n", data->callref); mncc_leg_release(leg); @@ -581,9 +583,10 @@ static void check_rej_ind(struct mncc_connection *conn, const char *buf, int rc) leg->cause = data->cause.value; other_leg = call_leg_other(&leg->base); - if (other_leg) + if (other_leg) { other_leg->cause = data->cause.value; other_leg->release_call(other_leg); + } LOGP(DMNCC, LOGL_DEBUG, "leg(%u) was rejected.\n", data->callref); mncc_leg_release(leg); } -- cgit v1.2.3