aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-12-02 03:42:20 +0700
committerlaforge <laforge@osmocom.org>2019-12-02 23:21:27 +0000
commitbd3eabc13e5563424597bf4c7e20c0c999fc110b (patch)
tree6794c9a3a97a11b7ac897d7487fa7c1887a3b025
parent6bb700e9d21cadd1133424768dde90acce4df0dd (diff)
common/abis.c: use tall_bts_ctx as talloc-context for libosmo_abis_init()
This way it's much easier to introspect the library internal talloc allocations from the VTY interface. Change-Id: Ic8d9fc7ce3da8abf0ea73d2b20366133cd801c37
-rw-r--r--src/common/abis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/abis.c b/src/common/abis.c
index e18e8d9a..2da1ddd3 100644
--- a/src/common/abis.c
+++ b/src/common/abis.c
@@ -258,7 +258,7 @@ void abis_init(struct gsm_bts *bts)
g_bts = bts;
oml_init(&bts->mo);
- libosmo_abis_init(NULL);
+ libosmo_abis_init(tall_bts_ctx);
osmo_signal_register_handler(SS_L_INPUT, &inp_s_cbfn, bts);
}