[ovs-dev] [PATCH v2 07/26] ovn-dbctl: Fix memory leak in client mode.

Ben Pfaff blp at ovn.org
Thu Apr 1 23:20:49 UTC 2021


This isn't notable, since this commit frees it just before exiting, but
it cleans up the Address Sanitizer report.

Signed-off-by: Ben Pfaff <blp at ovn.org>
---
 utilities/ovn-dbctl.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/utilities/ovn-dbctl.c b/utilities/ovn-dbctl.c
index 28ebc6267066..d815dc5c8c5f 100644
--- a/utilities/ovn-dbctl.c
+++ b/utilities/ovn-dbctl.c
@@ -1210,5 +1210,9 @@ dbctl_client(const struct ovn_dbctl_options *dbctl_options,
     free(cmd_result);
     free(cmd_error);
     jsonrpc_close(client);
+    for (int i = 0; i < argc; i++) {
+        free(argv[i]);
+    }
+    free(argv);
     exit(exit_status);
 }
-- 
2.29.2



More information about the dev mailing list