From dde7b2361bf5b052a9c5c727bb2b062c604c7d42 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 16 Dec 2015 15:05:54 -0700 Subject: [PATCH] gclient: don't free pdu on iolog return The command is freed separately, don't free it twice. Signed-off-by: Jens Axboe --- gclient.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gclient.c b/gclient.c index 17af38ab..949ad42a 100644 --- a/gclient.c +++ b/gclient.c @@ -696,7 +696,6 @@ static void gfio_client_job_start(struct fio_client *client, struct fio_net_cmd static void gfio_client_iolog(struct fio_client *client, struct cmd_iolog_pdu *pdu) { printf("got iolog: name=%s, type=%u, entries=%lu\n", pdu->name, pdu->log_type, (unsigned long) pdu->nr_samples); - free(pdu); } static void gfio_add_total_depths_tree(GtkListStore *model, -- 2.25.1