Re: [ovs-dev] [PATCH] patch: Check the right variable for null.

2017-06-01 Thread Ben Pfaff
On Thu, Jun 01, 2017 at 04:57:42PM -0700, Justin Pettit wrote: > > > On May 26, 2017, at 10:55 PM, Ben Pfaff wrote: > > > > This function tried to check 'iface_peer' for null, but it actually > > checked its always-nonnull 'peer' argument instead. This fixes the > > problem. > >

[ovs-dev] [PATCH] patch: Check the right variable for null.

2017-05-26 Thread Ben Pfaff
This function tried to check 'iface_peer' for null, but it actually checked its always-nonnull 'peer' argument instead. This fixes the problem. Found by Coverity. Reported-at: https://scan3.coverity.com/reports.htm#v16889/p10449/fileInstanceId=14763064=4305294=179852 Signed-off-by: Ben Pfaff