From 7139ca5521abbb23fee0cd356ec580b01d3e563a Mon Sep 17 00:00:00 2001 From: Damijan Skvarc Date: Tue, 29 Oct 2019 14:04:58 +0100 Subject: ovsdb-execute: Remove unused variable from ovsdb_execute_mutate(). Signed-off-by: Damijan Skvarc Signed-off-by: Ben Pfaff --- ovsdb/execution.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'ovsdb') diff --git a/ovsdb/execution.c b/ovsdb/execution.c index c55a0b771..f2cf3d72d 100644 --- a/ovsdb/execution.c +++ b/ovsdb/execution.c @@ -562,7 +562,6 @@ ovsdb_execute_mutate(struct ovsdb_execution *x, struct ovsdb_parser *parser, const struct json *mutations_json; struct ovsdb_condition condition = OVSDB_CONDITION_INITIALIZER(&condition); struct ovsdb_mutation_set mutations = OVSDB_MUTATION_SET_INITIALIZER; - struct ovsdb_row *row = NULL; struct mutate_row_cbdata mr; struct ovsdb_error *error; @@ -595,7 +594,6 @@ ovsdb_execute_mutate(struct ovsdb_execution *x, struct ovsdb_parser *parser, json_object_put(result, "count", json_integer_create(mr.n_matches)); } - ovsdb_row_destroy(row); ovsdb_mutation_set_destroy(&mutations); ovsdb_condition_destroy(&condition); -- cgit v1.2.1