From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> This is supposed to be allocating the initial buffer which consists of 4 integers to store errno values to ignore. Also explicitly zero clear the buffer. Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index 2daa983..864e778 100644 --- a/options.c +++ b/options.c @@ -282,7 +282,7 @@ static int ignore_error_type(struct thread_data *td, int etype, char *str) } td->o.ignore_error_nr[etype] = 4; - error = malloc(4 * sizeof(struct bssplit)); + error = calloc(4, sizeof(int)); i = 0; while ((fname = strsep(&str, ":")) != NULL) { -- 2.9.4 -- 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