On Fri, Sep 09, 2016 at 11:01:37AM -0700, Andy Zhou wrote: > On Thu, Sep 8, 2016 at 9:22 PM, Ben Pfaff <[email protected]> wrote: > > > Fixes: 3109b4e127fa ("ovsdb: Add blacklist_tables") > > Signed-off-by: Ben Pfaff <[email protected]> > > --- > > ovsdb/ovsdb-server.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/ovsdb/ovsdb-server.c b/ovsdb/ovsdb-server.c > > index c33ab86..0e3f9ac 100644 > > --- a/ovsdb/ovsdb-server.c > > +++ b/ovsdb/ovsdb-server.c > > @@ -1215,7 +1215,9 @@ ovsdb_server_get_sync_exclude_tables(struct > > unixctl_conn *conn, > > const char *argv[] OVS_UNUSED, > > void *arg_ OVS_UNUSED) > > { > > - unixctl_command_reply(conn, get_blacklist_tables()); > > + char *reply = get_blacklist_tables(); > > + unixctl_command_reply(conn, reply); > > + free(reply); > > } > > > > static void > > > Thanks for the fix. > > Acked-by: Andy Zhou <[email protected]>
Thanks, applied to master and branch-2.6. _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
