bridge: Ethernet address is 6 bytes, not 4 or 8.
authorBen Pfaff <blp@nicira.com>
Wed, 23 Feb 2011 19:21:52 +0000 (11:21 -0800)
committerBen Pfaff <blp@nicira.com>
Wed, 23 Feb 2011 21:36:59 +0000 (13:36 -0800)
commit0b420b100ac540d45a45e45d40e6581b0c5f7eb5
treed030d75bc7157c0724a535a5054d95b2e4a28f88
parent5f8e32136eacbc91b7422b17d8208a64cfb3b8b9
bridge: Ethernet address is 6 bytes, not 4 or 8.

'ea' here is a function parameter declared as an array, so "sizeof ea" is
sizeof(uint8_t *), which is either 4 or 8.

Coverity #10689, 10735.
vswitchd/bridge.c