[PATCH] fio: missing fclose()
authorJens Axboe <axboe@suse.de>
Wed, 19 Oct 2005 14:18:31 +0000 (16:18 +0200)
committerJens Axboe <axboe@suse.de>
Wed, 19 Oct 2005 14:18:31 +0000 (16:18 +0200)
fio.c

diff --git a/fio.c b/fio.c
index 1083d0508143dd21a7a4d6e5761d1ae273bd5985..d7fbab4e5170f9b4275adbd2faf6b7f7b8dba2e1 100644 (file)
--- a/fio.c
+++ b/fio.c
@@ -930,6 +930,7 @@ static int parse_jobs_ini(char *file)
 
        free(string);
        free(name);
+       fclose(f);
        return 0;
 }