From 1ebeed630c561949cfa86b88dc935e20d7e9fc95 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 11 Dec 2009 13:16:15 -0800 Subject: [PATCH] ovsdb-idl: Fix deletion of modified row. If the transaction modified a row and then deleted it, the IDL would instead mistakenly leave the row entirely untouched. This commit fixes this bug. It needs a regression test, but this commit does not add one. --- lib/ovsdb-idl.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/ovsdb-idl.c b/lib/ovsdb-idl.c index 98ec3dd55..409ddb0d0 100644 --- a/lib/ovsdb-idl.c +++ b/lib/ovsdb-idl.c @@ -1141,11 +1141,8 @@ ovsdb_idl_txn_delete(struct ovsdb_idl_row *row) hmap_insert(&row->table->idl->txn->txn_rows, &row->txn_node, uuid_hash(&row->uuid)); } - if (row->new == row->old) { - row->new = NULL; - } else { - ovsdb_idl_row_clear_new(row); - } + ovsdb_idl_row_clear_new(row); + row->new = NULL; } struct ovsdb_idl_row * -- 2.45.2