ofproto-dpif: Fix memory leak in handle_flow_miss().
authorBen Pfaff <blp@nicira.com>
Tue, 20 Aug 2013 14:15:39 +0000 (07:15 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 20 Aug 2013 14:15:39 +0000 (07:15 -0700)
Every xlate_actions() needs a corresponding xlate_out_uninit(), but the
call in handle_flow_miss() lacked one.  struct xlate_out has a built-in
256-byte actions stub, so the bug only showed up for lots of actions.

Bug #19198.
Reported-by: Ronald Lee <ronaldlee@vmware.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Justin Pettit <jpettit@nicira.com>

No differences found