aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-09-03 11:30:22 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-09-03 11:30:42 +0200
commit87b19a06d7d506799802c461c02b30f5274c2bd3 (patch)
tree0fa1be96b826f5a7368437ef0de0b4cfcf14b016
parent008915ee41900c34ec0fd8df0c9f1d7c2cbdb3b2 (diff)
mncc: Fix missing conditional clause
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
-rw-r--r--src/mncc.c9
1 files 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);
}