Fixes issue #15. Forgot to close() a socket in wifi_essid()...
This commit is contained in:
parent
d19d4aa2e8
commit
75b1853313
1 changed files with 2 additions and 0 deletions
|
@ -568,6 +568,8 @@ wifi_essid(const char *wificard)
|
|||
return smprintf(UNKNOWN_STR);
|
||||
}
|
||||
|
||||
close(sockfd);
|
||||
|
||||
if (strcmp((char *)wreq.u.essid.pointer, "") == 0)
|
||||
return smprintf(UNKNOWN_STR);
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue