aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-10-28 22:53:36 +0000
committerNeels Hofmeyr <neels@hofmeyr.de>2020-10-28 22:53:41 +0000
commitfe608758973a7d59c2a8ce901c0d268f2cdde493 (patch)
tree613690508caaf32d4e9b1a9f5aedfda19d3f88c6 /src/osmo-bsc
parent88a0789a8e9e926ac66c2ec2507659a2e05690e6 (diff)
fix missing RR release when there is no MSC
Diffstat (limited to 'src/osmo-bsc')
-rw-r--r--src/osmo-bsc/gsm_08_08.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/gsm_08_08.c b/src/osmo-bsc/gsm_08_08.c
index cd8b77f79..2c51c958a 100644
--- a/src/osmo-bsc/gsm_08_08.c
+++ b/src/osmo-bsc/gsm_08_08.c
@@ -540,7 +540,7 @@ int bsc_compl_l3(struct gsm_lchan *lchan, struct msgb *msg, uint16_t chosen_chan
early_exit:
if (release_lchan)
- lchan_release(lchan, false, true, RSL_ERR_EQUIPMENT_FAIL);
+ lchan_release(lchan, true, true, RSL_ERR_EQUIPMENT_FAIL);
log_set_context(LOG_CTX_BSC_SUBSCR, NULL);
return rc;
}