Re: [ovs-dev] [PATCH v2] bridge: Fix use of wild pointer in iface_do_create().

2013-05-16 Thread Ben Pfaff
On Thu, May 16, 2013 at 10:36:15PM -0700, Justin Pettit wrote: > > On May 16, 2013, at 10:30 PM, Ben Pfaff wrote: > > > 'netdev' is not initialized at this point in the function, so the cleanup > > at the error label references a wild pointer (and is not useful anyhow). > > > > Introduced in co

Re: [ovs-dev] [PATCH v2] bridge: Fix use of wild pointer in iface_do_create().

2013-05-16 Thread Justin Pettit
On May 16, 2013, at 10:30 PM, Ben Pfaff wrote: > 'netdev' is not initialized at this point in the function, so the cleanup > at the error label references a wild pointer (and is not useful anyhow). > > Introduced in commit 94a538422d4b (netdev: Prevent using reserved names). > > CC: Alex Wang

[ovs-dev] [PATCH v2] bridge: Fix use of wild pointer in iface_do_create().

2013-05-16 Thread Ben Pfaff
'netdev' is not initialized at this point in the function, so the cleanup at the error label references a wild pointer (and is not useful anyhow). Introduced in commit 94a538422d4b (netdev: Prevent using reserved names). CC: Alex Wang Signed-off-by: Ben Pfaff --- v1->v2: Fix Alex's email addres