From: Ben Pfaff Date: Mon, 1 Feb 2010 22:33:29 +0000 (-0800) Subject: ovsdb-tool: Fix minor memory leak in "create". X-Git-Tag: v1.0.0~259^2~194 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=90cc40715368ded012349403a77fa05a441a9dae;p=sliver-openvswitch.git ovsdb-tool: Fix minor memory leak in "create". This leak is not important, since "ovsdb-tool create" is a short-running command, but we might as well fix it. Found with valgrind. --- diff --git a/ovsdb/ovsdb-tool.c b/ovsdb/ovsdb-tool.c index d506aae33..1f2a5ef7e 100644 --- a/ovsdb/ovsdb-tool.c +++ b/ovsdb/ovsdb-tool.c @@ -161,6 +161,7 @@ do_create(int argc UNUSED, char *argv[]) /* Read schema from file and convert to JSON. */ check_ovsdb_error(ovsdb_schema_from_file(schema_file_name, &schema)); json = ovsdb_schema_to_json(schema); + ovsdb_schema_destroy(schema); /* Create database file. */ check_ovsdb_error(ovsdb_log_open(db_file_name, O_RDWR | O_CREAT | O_EXCL,