[OpenWrt-Devel] [firewall3] utils: coverity resource leak warning
Kevin Darbyshire-Bryant
ldir at darbyshire-bryant.me.uk
Wed Jun 12 11:53:15 EDT 2019
solve coverity reported resource leak (socket handle)
Signed-off-by: Kevin Darbyshire-Bryant <ldir at darbyshire-bryant.me.uk>
---
utils.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/utils.c b/utils.c
index 7f09787..fc6bbd7 100644
--- a/utils.c
+++ b/utils.c
@@ -944,18 +944,24 @@ bool
fw3_check_loopback_dev(const char *name)
{
struct ifreq ifr;
- int s = socket(AF_LOCAL, SOCK_DGRAM, 0);
+ int s;
bool rv = false;
+ s = socket(AF_LOCAL, SOCK_DGRAM, 0);
+
+ if (s < 0)
+ return false;
+
memset(&ifr, 0, sizeof(ifr));
strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name) - 1);
- if (s < 0 || ioctl(s, SIOCGIFFLAGS, &ifr) < 0)
- goto out;
+ if (ioctl(s, SIOCGIFFLAGS, &ifr) >= 0) {
+ if (ifr.ifr_flags & IFF_LOOPBACK)
+ rv = true;
+ }
+
+ close(s);
- if (ifr.ifr_flags & IFF_LOOPBACK)
- rv = true;
-out:
return rv;
}
--
2.20.1 (Apple Git-117)
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list