diff options
author | raiz <raiz@firemail.cc> | 2016-12-27 20:14:45 +0300 |
---|---|---|
committer | raiz <raiz@firemail.cc> | 2016-12-27 20:14:45 +0300 |
commit | 94e87eb8baaf1c20d02602ba3d01bc1babdb2e35 (patch) | |
tree | c117e09a7e879a25ed12fe88f162c16d502d42c0 /slstatus.c | |
parent | 11fec4fa9501bd20aace72235c4525dc87d5d281 (diff) |
wifi_essid: add boundary check && prevent the use of direct string literal as a format string in snprintf()
Diffstat (limited to 'slstatus.c')
-rw-r--r-- | slstatus.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -717,7 +717,8 @@ wifi_essid(const char *iface) memset(&wreq, 0, sizeof(struct iwreq)); wreq.u.essid.length = IW_ESSID_MAX_SIZE+1; - sprintf(wreq.ifr_name, iface); + snprintf(wreq.ifr_name, ifrn_name, "%s", iface); + if (sockfd == -1) { warn("Failed to get ESSID for interface %s", iface); return smprintf("%s", UNKNOWN_STR); |