From 22d662132577b9950753369c94c2662c64ad7385 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 27 Mar 2007 20:06:25 +0200 Subject: [PATCH] Don't free the string options We need at least ->name, just leave them all alone. Signed-off-by: Jens Axboe --- options.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/options.c b/options.c index aeba5201..f8e89f38 100644 --- a/options.c +++ b/options.c @@ -908,7 +908,9 @@ void options_mem_dupe(struct thread_data *td) __options_mem(td, 1); } -void options_mem_free(struct thread_data *td) +void options_mem_free(struct thread_data fio_unused *td) { +#if 0 __options_mem(td, 0); +#endif } -- 2.25.1