Browse Source

ip: fixed memory leak

free the interface list before returning from the function
master
Tobias Tschinkowitz 8 years ago
committed by Aaron Marcher
parent
commit
1cd8a7b510
  1. 1
      components/ip.c

1
components/ip.c

@ -31,6 +31,7 @@ ip(const char *iface, unsigned short sa_family)
host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST); host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
if (!strcmp(ifa->ifa_name, iface) && if (!strcmp(ifa->ifa_name, iface) &&
(ifa->ifa_addr->sa_family == sa_family)) { (ifa->ifa_addr->sa_family == sa_family)) {
freeifaddrs(ifaddr);
if (s != 0) { if (s != 0) {
warn("getnameinfo: %s", gai_strerror(s)); warn("getnameinfo: %s", gai_strerror(s));
return NULL; return NULL;

Loading…
Cancel
Save