Browse Source

fixed memleak in datetime()

Aaron Marcher 9 years ago
parent
commit
086a70cde0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      slstatus.c

+ 1 - 0
slstatus.c

@@ -160,6 +160,7 @@ datetime(const char *timeformat)
     setlocale(LC_TIME, "");
     if(!strftime(buf, bufsize, timeformat, localtime(&tm))) {
         setlocale(LC_TIME, "C");
+        free(buf);
         fprintf(stderr, "Strftime failed.\n");
         return smprintf("n/a");
     }