The following changes since commit 27c9aab2d9a45a1babf01a3aa0123e1f5ce36a24: Makes use of configparser portable to older versions by: - relying on its' own NoOptionError exception - using getter method instead of dictionary overriding - and using readfp() as older version does not autodetect fp vs string types (2016-09-06 10:22:00 -0400) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 5e333ada464c885d2a33a30e98812bfb666e6052: init: pass in right pointer to def thread options free (2016-09-11 19:14:10 -0600) ---------------------------------------------------------------- Jens Axboe (1): init: pass in right pointer to def thread options free init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/init.c b/init.c index 4b4a86a..bc17b40 100644 --- a/init.c +++ b/init.c @@ -309,7 +309,7 @@ static void free_shm(void) free(trigger_remote_cmd); trigger_file = trigger_cmd = trigger_remote_cmd = NULL; - options_free(fio_options, &def_thread); + options_free(fio_options, &def_thread.o); fio_filelock_exit(); scleanup(); } -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html