The following changes since commit 3bb0a7b0fda9945973f799ab253c70d3cb0e5c8b:
howto: Fix redundant entries (2013-10-04 23:09:42 +0100)
are available in the git repository at:
git://git.kernel.dk/fio.git master
Hong Zhiguo (1):
fix crash: free of wrong pointer in bssplit_ddir
Jens Axboe (1):
Merge branch 'master' of ssh://git.kernel.dk/data/git/fio
options.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
Diff of recent changes:
diff --git a/options.c b/options.c
index a064764..4b91f52 100644
--- a/options.c
+++ b/options.c
@@ -104,7 +104,7 @@ static int bssplit_ddir(struct thread_options *o, int ddir,
char *str)
if (str_to_decimal(fname, &val, 1, o)) {
log_err("fio: bssplit conversion failed\n");
- free(o->bssplit);
+ free(bssplit);
return 1;
}
--
To unsubscribe from this list: send the line "unsubscribe fio" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html