Re: [ovs-dev] [PATCH ovn] ovn-nbctl: Fix using uninitialized direction while removing qos.

2020-05-14 Thread Numan Siddique
On Thu, May 14, 2020 at 1:36 AM Mark Michelson wrote: > Acked-by: Mark Michelson > > Thanks Ilya and Mark. I applied this patch to master. Numan > On 5/13/20 1:12 PM, Ilya Maximets wrote: > > GCC 9 complains: > > utilities/ovn-nbctl.c: In function 'nbctl_qos_del': > >

Re: [ovs-dev] [PATCH ovn] ovn-nbctl: Fix using uninitialized direction while removing qos.

2020-05-13 Thread Mark Michelson
Acked-by: Mark Michelson On 5/13/20 1:12 PM, Ilya Maximets wrote: GCC 9 complains: utilities/ovn-nbctl.c: In function 'nbctl_qos_del': utilities/ovn-nbctl.c:2592:15: error: 'direction' may be used uninitialized in this function [-Werror=maybe-uninitialized]

[ovs-dev] [PATCH ovn] ovn-nbctl: Fix using uninitialized direction while removing qos.

2020-05-13 Thread Ilya Maximets
GCC 9 complains: utilities/ovn-nbctl.c: In function 'nbctl_qos_del': utilities/ovn-nbctl.c:2592:15: error: 'direction' may be used uninitialized in this function [-Werror=maybe-uninitialized] 2592 | !strcmp(direction, qos->direction)) { |