Selaa lähdekoodia

run_command: strlen() will not function if string is not null terminated

master
Aaron Marcher 7 vuotta sitten
vanhempi
commit
8a29374783
No known key found for this signature in database GPG Key ID: 74B048E5C2474F9A
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      slstatus.c

+ 1
- 1
slstatus.c Näytä tiedosto

@@ -426,7 +426,7 @@ run_command(const char *cmd)
}
fgets(buf, sizeof(buf), fp);
pclose(fp);
buf[strlen(buf)] = '\0';
buf[sizeof(buf)] = '\0';

if ((nlptr = strstr(buf, "\n")) != NULL) {
nlptr[0] = '\0';


Ladataan…
Peruuta
Tallenna