place asn1 context under hnb_ctx for better visibility

Include talloc_asn1_context in 'show talloc-context application'. It
belongs there IMO.

Related: SYS#6297
Change-Id: Iffc320c64713b225b57211da4fb95a868bf1f369
This commit is contained in:
Neels Hofmeyr 2023-04-27 03:49:36 +02:00 committed by neels
parent 4a4a675fec
commit 0188391a19
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ int main(int argc, char **argv)
talloc_enable_null_tracking();
tall_hnb_ctx = talloc_named_const(NULL, 0, "hnb_context");
talloc_asn1_ctx = talloc_named_const(NULL, 1, "asn1_context");
talloc_asn1_ctx = talloc_named_const(tall_hnb_ctx, 1, "asn1_context");
msgb_talloc_ctx_init(tall_hnb_ctx, 0);
g_hnb_gw = hnb_gw_create(tall_hnb_ctx);