From a7d54bb2c15e280143455289236884be1a402dda Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Fri, 6 Nov 2015 15:20:15 +1100 Subject: [PATCH] ctdb-client: Add missing initialization for h->ev in transaction_start Signed-off-by: Amitay Isaacs Reviewed-by: Martin Schwenke --- ctdb/client/client_db.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ctdb/client/client_db.c b/ctdb/client/client_db.c index f9368b265f4..1086b0e14e6 100644 --- a/ctdb/client/client_db.c +++ b/ctdb/client/client_db.c @@ -1610,6 +1610,7 @@ struct tevent_req *ctdb_transaction_start_send(TALLOC_CTX *mem_ctx, return tevent_req_post(req, ev); } + h->ev = ev; h->client = client; h->db = db; h->readonly = readonly; -- 2.34.1