Re: [ovs-dev] [PATCH 1/1] ovn-northd: fixed memory leak in ovn_port_update_sbrec()

2019-08-06 Thread Numan Siddique
On Fri, Aug 2, 2019 at 9:43 PM Numan Siddique wrote: > > > On Fri, Aug 2, 2019 at 5:45 PM Damijan Skvarc > wrote: > >> Memory leak happens because of redundand memory allocation for array >> of single pointer. Issue was solved by removing this redundand allocation >> and using address of

Re: [ovs-dev] [PATCH 1/1] ovn-northd: fixed memory leak in ovn_port_update_sbrec()

2019-08-02 Thread Numan Siddique
On Fri, Aug 2, 2019 at 6:31 PM 0-day Robot wrote: > Bleep bloop. Greetings Damijan Skvarc, I am a robot and I have tried out > your patch. > Thanks for your contribution. > > I encountered some error that I wasn't expecting. See the details below. > > > git-am: > fatal: sha1 information is

Re: [ovs-dev] [PATCH 1/1] ovn-northd: fixed memory leak in ovn_port_update_sbrec()

2019-08-02 Thread Numan Siddique
On Fri, Aug 2, 2019 at 5:45 PM Damijan Skvarc wrote: > Memory leak happens because of redundand memory allocation for array > of single pointer. Issue was solved by removing this redundand allocation > and using address of pointer to created chassis sb_ha_entity instead. > > Signed-off-by:

Re: [ovs-dev] [PATCH 1/1] ovn-northd: fixed memory leak in ovn_port_update_sbrec()

2019-08-02 Thread 0-day Robot
Bleep bloop. Greetings Damijan Skvarc, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. git-am: fatal: sha1 information is lacking or useless (northd/ovn-northd.c). Repository lacks necessary

[ovs-dev] [PATCH 1/1] ovn-northd: fixed memory leak in ovn_port_update_sbrec()

2019-08-02 Thread Damijan Skvarc
Memory leak happens because of redundand memory allocation for array of single pointer. Issue was solved by removing this redundand allocation and using address of pointer to created chassis sb_ha_entity instead. Signed-off-by: Damijan Skvarc --- northd/ovn-northd.c | 6 ++ 1 file changed,