Fix a bug in wifi_essid().

When an invalid interface name is passed to wifi_essid() it does not
close opened sockets.
master
Aaron Marcher 8 years ago
parent 47d0073bfd
commit fa62e8199e
No known key found for this signature in database
GPG Key ID: 74B048E5C2474F9A

@ -77,6 +77,7 @@ wifi_essid(const char *iface)
wreq.u.essid.pointer = id;
if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
warn("Failed to get ESSID for interface %s", iface);
close(sockfd);
return NULL;
}

Loading…
Cancel
Save