X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fovsdb-idl.c;h=3eca2feb320b58a76497cfbe4bec7cf8e99a98fd;hb=eb0cb3161f52bfb8360e48af6a869ba3a5f06add;hp=bb7da668aebce0f7478f346018ef037229354388;hpb=2f92678735d089e2d2a0cb9e5f6ff3aae7ed38c0;p=openvswitch diff --git a/lib/ovsdb-idl.c b/lib/ovsdb-idl.c index bb7da668..3eca2feb 100644 --- a/lib/ovsdb-idl.c +++ b/lib/ovsdb-idl.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010, 2011, 2012 Nicira Networks. +/* Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -906,6 +906,7 @@ static struct ovsdb_idl_row * ovsdb_idl_row_create__(const struct ovsdb_idl_table_class *class) { struct ovsdb_idl_row *row = xzalloc(class->allocation_size); + class->row_init(row); list_init(&row->src_arcs); list_init(&row->dst_arcs); hmap_node_nullify(&row->txn_node);