pespin has submitted this change. (
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(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
osmith: Looks good to me, approved
neels: Looks good to me, approved
fixeria: Looks good to me, approved
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 94d2baf..42dd942 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;
3 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
--
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: 4
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged