[ovs-dev] [PATCH 18/23] db-ctl-base: Fix resource deallocation on error path in cmd_find().

Jakub Sitnicki jkbs at redhat.com
Mon Jul 2 10:50:14 UTC 2018


Release resources now that we are returning to the caller on error.

Signed-off-by: Jakub Sitnicki <jkbs at redhat.com>
---
 lib/db-ctl-base.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/db-ctl-base.c b/lib/db-ctl-base.c
index 5f386cab5..d3ca4ca70 100644
--- a/lib/db-ctl-base.c
+++ b/lib/db-ctl-base.c
@@ -1285,6 +1285,7 @@ cmd_find(struct ctl_context *ctx)
             ctx->error = check_condition(table, row, ctx->argv[i],
                                          ctx->symtab, &satisfied);
             if (ctx->error) {
+                free(columns);
                 return;
             }
             if (!satisfied) {
-- 
2.14.4



More information about the dev mailing list