Kaynağa Gözat

simplified wifi_essid by removing one malloc()

master
Aaron Marcher 8 yıl önce
committed by Aaron Marcher (drkhsh)
ebeveyn
işleme
85db24fef0
1 değiştirilmiş dosya ile 1 ekleme ve 5 silme
  1. +1
    -5
      slstatus.c

+ 1
- 5
slstatus.c Dosyayı Görüntüle

@@ -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;



Yükleniyor…
İptal
Kaydet