Browse Source

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
commit
fa62e8199e
No known key found for this signature in database GPG Key ID: 74B048E5C2474F9A
  1. 1
      components/wifi.c

1
components/wifi.c

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

Loading…
Cancel
Save