ofproto: Fix duplicate hmap_remove() in ofproto_destroy().
authorBen Pfaff <blp@nicira.com>
Thu, 12 May 2011 19:21:23 +0000 (12:21 -0700)
committerBen Pfaff <blp@nicira.com>
Thu, 12 May 2011 19:21:23 +0000 (12:21 -0700)
Both ofport_destroy() and its caller ofproto_destroy() were attempting to
remove the ofport's hmap_node from the ofproto's 'ports' hmap, resulting
in a use-after-free error.

Reported-by: Michael MAO <mmao@nicira.com>
ofproto/ofproto.c

index bfcae57..f217310 100644 (file)
@@ -624,7 +624,6 @@ ofproto_destroy(struct ofproto *p)
 
     ofproto_flush_flows__(p);
     HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
-        hmap_remove(&p->ports, &ofport->hmap_node);
         ofport_destroy(ofport);
     }