aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-06-10 11:46:58 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-06-10 11:49:01 +0200
commitfdac4cc176892734ad782dccc2dc45a0282298a2 (patch)
tree2d1e8f715e1b4ad02fecfc57be243726f1522ade /openbsc
parent500f3ca19dfe4eba2d20e3a6d68fdb32b93e17a5 (diff)
[paging] Unbreak breakge when moving things into paging.c
By calling _paging_request_stop with NULL for the lchan we have never used the paging complete callback... I didn't spot that when moving the code over and thought it is a great simplification to not call paging_request_stop first and then loop... *sigh* restore the old behaviour. Call the callback first and then free the requests.
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/paging.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/openbsc/src/paging.c b/openbsc/src/paging.c
index e647b33be..df11da0e6 100644
--- a/openbsc/src/paging.c
+++ b/openbsc/src/paging.c
@@ -278,6 +278,8 @@ void paging_request_stop(struct gsm_bts *_bts, struct gsm_subscriber *subscr,
{
struct gsm_bts *bts = NULL;
+ _paging_request_stop(_bts, subscr, lchan);
+
do {
/*
* FIXME: Don't use the lac of the subscriber...
@@ -290,7 +292,8 @@ void paging_request_stop(struct gsm_bts *_bts, struct gsm_subscriber *subscr,
break;
/* Stop paging */
- _paging_request_stop(bts, subscr, NULL);
+ if (bts != _bts)
+ _paging_request_stop(bts, subscr, NULL);
} while (1);
}