pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmo-abis/+/29371 )
Change subject: ipaccess: Call line->ops->sign_link_down() only if set
......................................................................
ipaccess: Call line->ops->sign_link_down() only if set
This op must not necessarily be set by the user, so check if it is set
before calling it.
Change-Id: I666c5bbf157fe604e336df44f7eac098572d42ba
---
M src/input/ipaccess.c
1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-abis refs/changes/71/29371/1
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index fd6eabc..0180e12 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -123,7 +123,8 @@
e1i_ts->pending_msg = NULL;
/* e1inp_sign_link_destroy releases the socket descriptors for us. */
- line->ops->sign_link_down(line);
+ if (line->ops->sign_link_down)
+ line->ops->sign_link_down(line);
e1inp_line_put2(line, __func__);
return ret;
--
To view, visit
https://gerrit.osmocom.org/c/libosmo-abis/+/29371
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I666c5bbf157fe604e336df44f7eac098572d42ba
Gerrit-Change-Number: 29371
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange