aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/paging.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/src/paging.c')
-rw-r--r--openbsc/src/paging.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/openbsc/src/paging.c b/openbsc/src/paging.c
index f540437a3..87c7e7d38 100644
--- a/openbsc/src/paging.c
+++ b/openbsc/src/paging.c
@@ -295,7 +295,8 @@ void paging_request_stop(struct gsm_bts *_bts, struct gsm_subscriber *subscr,
{
struct gsm_bts *bts = NULL;
- _paging_request_stop(_bts, subscr, lchan);
+ if (_bts)
+ _paging_request_stop(_bts, subscr, lchan);
do {
/*
@@ -304,7 +305,7 @@ void paging_request_stop(struct gsm_bts *_bts, struct gsm_subscriber *subscr,
* location area of the _bts as reconfiguration of the
* network is probably happening less often.
*/
- bts = gsm_bts_by_lac(_bts->network, subscr->lac, bts);
+ bts = gsm_bts_by_lac(subscr->net, subscr->lac, bts);
if (!bts)
break;