X-Git-Url: https://git.subgeniuskitty.com/dwm-status/.git/blobdiff_plain/a30f9f5bd1c9c3fcd96b32e3919206df0e9306bf..81cdc8f4a2528374842049c214937349b30fbebc:/dwmstatus.c diff --git a/dwmstatus.c b/dwmstatus.c index a8cd4ac..1b53292 100644 --- a/dwmstatus.c +++ b/dwmstatus.c @@ -106,8 +106,10 @@ readfile(char *base, char *file) if (fd == NULL) return NULL; - if (fgets(line, sizeof(line)-1, fd) == NULL) + if (fgets(line, sizeof(line)-1, fd) == NULL) { + fclose(fd); return NULL; + } fclose(fd); return smprintf("%s", line);