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

2013-05-16 Thread Ben Pfaff
Thanks! Applied to master. On Thu, May 16, 2013 at 10:48:56PM -0700, Justin Pettit wrote: > Looks good. > > --Justin > > > On May 16, 2013, at 10:45 PM, Ben Pfaff wrote: > > > 'netdev' was not initialized at this point in the function, so the cleanup > > at the error label referenced a wild

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

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

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

2013-05-16 Thread Ben Pfaff
'netdev' was not initialized at this point in the function, so the cleanup at the error label referenced a wild pointer. Introduced in commit 94a538422d4b (netdev: Prevent using reserved names). CC: Alex Wang Signed-off-by: Ben Pfaff --- v1->v2: Fix Alex's email address. v2->v3: Fix bug I intro