summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-04-29 11:39:34 +0200
committerTobias Klauser <tklauser@distanz.ch>2016-04-29 11:39:34 +0200
commit741f912bc2b8da74ce7d60325dff662bdb4b2bfe (patch)
tree2d5d98f636d86a7d30033d67f5585ca21b7b1ab0
parentc7f21bebbeadf36f71251b6b0c62f2d93b308a5c (diff)
iface: Close rtnl socket if address enumeration fails
Fix a resource leak by closing the socket if iface_rtnl_enumerate() fails. Discovered by the Coverity scanner CID 99694. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r--iface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iface.c b/iface.c
index 4bc9b5e..9664a0c 100644
--- a/iface.c
+++ b/iface.c
@@ -355,9 +355,9 @@ int iface_run(void)
/* send RTM_GETADDR request to initially populate the interface list */
if (iface_rtnl_enumerate(sock, RTM_GETADDR, AF_INET) < 0)
- return -1;
+ goto out;
if (iface_rtnl_enumerate(sock, RTM_GETADDR, AF_INET6) < 0)
- return -1;
+ goto out;
while (iface_running) {
ssize_t recvlen;