This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Harald Welte gerrit-no-reply at lists.osmocom.orgHarald Welte has submitted this change and it was merged. ( https://gerrit.osmocom.org/11417 )
Change subject: vty.c: Set vty->fd to -1 after closing the FD
......................................................................
vty.c: Set vty->fd to -1 after closing the FD
Change-Id: I07d105f4a810dd809fbf6feb5c04e7410020c887
---
M src/vty/vty.c
1 file changed, 3 insertions(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
Harald Welte: Looks good to me, approved
diff --git a/src/vty/vty.c b/src/vty/vty.c
index ad53537..70f6811 100644
--- a/src/vty/vty.c
+++ b/src/vty/vty.c
@@ -221,8 +221,10 @@
vector_unset(vtyvec, vty->fd);
/* Close socket. */
- if (vty->fd > 0)
+ if (vty->fd > 0) {
close(vty->fd);
+ vty->fd = -1;
+ }
if (vty->buf) {
talloc_free(vty->buf);
--
To view, visit https://gerrit.osmocom.org/11417
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I07d105f4a810dd809fbf6feb5c04e7410020c887
Gerrit-Change-Number: 11417
Gerrit-PatchSet: 2
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder (1000002)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20181021/15332aeb/attachment.htm>