vswitch: Fix uninitialized variable.
authorBen Pfaff <blp@nicira.com>
Wed, 10 Feb 2010 19:13:09 +0000 (11:13 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 11 Feb 2010 18:33:11 +0000 (10:33 -0800)
commitf446d59b369ec2c5df79ee3589c50eb22f949a63
treee12b2e3ffde11a06d77c7484bce0de930aa5961a
parent3a919aee4424281cca765741fe8e4c881d535df2
vswitch: Fix uninitialized variable.

The 'ip' variable in this inner "if" statement shadows a variable with
the same name in the enclosing block.  The variable in the inner block
is never initialized.

Found by Clang (http://clang-analyzer.llvm.org).
vswitchd/bridge.c