From 84ba64b96410c8b87611ec000b9e2d29dfeb06d9 Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Tue, 22 Feb 2011 10:43:00 -0800 Subject: [PATCH] table: Free "error" in cell_to_text(). Coverity #10722 --- lib/table.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/table.c b/lib/table.c index 86366d0dc..ff11e7816 100644 --- a/lib/table.c +++ b/lib/table.c @@ -23,6 +23,7 @@ #include "dynamic-string.h" #include "json.h" #include "ovsdb-data.h" +#include "ovsdb-error.h" #include "util.h" struct column { @@ -54,6 +55,7 @@ cell_to_text(struct cell *cell, const struct table_style *style) cell->text = ds_steal_cstr(&s); } else { cell->text = json_to_string(cell->json, JSSF_SORT); + ovsdb_error_destroy(error); } } } else { -- 2.43.0