From 319ec04850904eb36da7d251b6bd0036ad296d57 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Fri, 17 Feb 2017 00:35:34 +0000 Subject: [PATCH] remove temporary buffer files main() already does rmdir() on the temporary directory, however it failed silently because there were still files in it. (affected -buffered). --- jobflow.c | 1 + 1 file changed, 1 insertion(+) diff --git a/jobflow.c b/jobflow.c index 2a169cf..fccf84b 100644 --- a/jobflow.c +++ b/jobflow.c @@ -214,6 +214,7 @@ static void dump_output(size_t job_id, int is_stderr) { } fclose(dst); fflush(out_stream); + unlink(out_filename_buf); } } -- 2.11.4.GIT