projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
770f1f6
)
table: Free "error" in cell_to_text().
author
Justin Pettit
<jpettit@nicira.com>
Tue, 22 Feb 2011 18:43:00 +0000
(10:43 -0800)
committer
Justin Pettit
<jpettit@nicira.com>
Wed, 23 Feb 2011 19:08:20 +0000
(11:08 -0800)
Coverity #10722
lib/table.c
patch
|
blob
|
history
diff --git
a/lib/table.c
b/lib/table.c
index 86366d0dca90cdaf2bf3e6f1e5771901f585a01b..ff11e7816ffcdccaf8dcd98dee1346a4f2636fc3 100644
(file)
--- 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 {