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: 008915ee41 ("Implement Cause Mapping")

Change-Id: I5bdbc29a3f82bdc92b156c1f7df68c9503f85f8f
This commit is contained in:
Pau Espin 2018-09-03 11:30:22 +02:00
parent 008915ee41
commit 87b19a06d7
1 changed files with 6 additions and 3 deletions

View File

@ -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);
}