diff options
author | Maria Matejka <mq@ucw.cz> | 2022-01-10 10:30:55 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-02-03 10:30:33 +0100 |
commit | f22bab98186a52f6e7247422ead4332f4c37e0ce (patch) | |
tree | 48c793d6b074be50a031b618b8871cd0285d8cf2 | |
parent | 3cf5e0f1443a1438ae3a84d0e91d7ad098590897 (diff) |
Babel: fixed interface pool removal
-rw-r--r-- | proto/babel/babel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/babel/babel.c b/proto/babel/babel.c index 515b27e5..e56a6328 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -1799,7 +1799,7 @@ babel_remove_iface(struct babel_proto *p, struct babel_iface *ifa) rem_node(NODE ifa); - rfree(ifa->pool); /* contains ifa itself, locks, socket, etc */ + rp_free(ifa->pool, p->p.pool); /* contains ifa itself, locks, socket, etc */ } static int |