From: Aaron Marcher Date: Mon, 15 Aug 2016 14:28:02 +0000 (+0200) Subject: simplified wifi_essid by removing one malloc() X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=85db24fef03fe611c3ac8151f9249af282ae9915;p=suckless%2Fslstatus.git simplified wifi_essid by removing one malloc() --- diff --git a/slstatus.c b/slstatus.c index 505f25d..bd1fe66 100644 --- a/slstatus.c +++ b/slstatus.c @@ -672,11 +672,7 @@ wifi_perc(const char *wificard) char * wifi_essid(const char *wificard) { - char *id = malloc(IW_ESSID_MAX_SIZE+1); - if (id == NULL) { - fprintf(stderr, "Cannot get ESSID."); - return smprintf("n/a"); - } + char id[IW_ESSID_MAX_SIZE+1]; int sockfd; struct iwreq wreq;