bridge: Fix segfault when updating learning table for deleted port.
authorJesse Gross <jesse@nicira.com>
Thu, 12 Nov 2009 01:05:22 +0000 (17:05 -0800)
committerJesse Gross <jesse@nicira.com>
Thu, 12 Nov 2009 01:15:10 +0000 (17:15 -0800)
commitf1bd68ab587edcbf6d6702c1843eba286db190ab
tree4dd2efb9fad6b90d8d888133797ea4a53761c028
parent42061b2a5b79d44c0ff9442a8203f0c7672ee9cf
bridge: Fix segfault when updating learning table for deleted port.

A function call using in_port was accidentally moved before the check
to see if it is null.  in_port can be null if a port was deleted but
an update is still pending.  This moves the call after the check.

Bug #2313
vswitchd/bridge.c