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 <b...@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

_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to