From fbd8fd40a33fa96060b4dffd911e04555f8771d4 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 11 Dec 2009 16:58:16 -0800 Subject: [PATCH] ovsdb-idl: Prevent segfault destroying an incomplete transaction. --- lib/ovsdb-idl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ovsdb-idl.c b/lib/ovsdb-idl.c index 409ddb0d0..8c1dcd8f0 100644 --- a/lib/ovsdb-idl.c +++ b/lib/ovsdb-idl.c @@ -805,6 +805,9 @@ ovsdb_idl_txn_set_dry_run(struct ovsdb_idl_txn *txn) void ovsdb_idl_txn_destroy(struct ovsdb_idl_txn *txn) { + if (txn->status == TXN_INCOMPLETE) { + hmap_remove(&txn->idl->outstanding_txns, &txn->hmap_node); + } ovsdb_idl_txn_abort(txn); free(txn); } -- 2.43.0