From ab3fd9e43927b98a8ffee9f87ca87f6ecbafab6b Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 19 Nov 2016 15:25:29 +0100 Subject: [PATCH] Close outfile after initial write check --- src/outfile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/outfile.c b/src/outfile.c index b89fb8d31..d74b812a1 100644 --- a/src/outfile.c +++ b/src/outfile.c @@ -288,6 +288,8 @@ int outfile_init (hashcat_ctx_t *hashcat_ctx) if (rc == -1) return -1; + outfile_write_close (hashcat_ctx); + return 0; }