Re: [libvirt] [PATCH] util: Missing 'removeTimeoutImpl' check variable inside virEventRegisterImpl() function.

2017-10-20 Thread John Ferlan
On 10/19/2017 11:35 AM, Julio Faracco wrote: > The function virEventRegisterImpl() checks the attempt to replace the > registered events. But there is a duplicate variable inside the IF statement. > The variable 'removeHandleImpl' was wrongly repeated. One of them needs to be > replaced by

Re: [libvirt] [PATCH] util: Missing 'removeTimeoutImpl' check variable inside virEventRegisterImpl() function.

2017-10-20 Thread Andrea Bolognani
On Thu, 2017-10-19 at 13:35 -0200, Julio Faracco wrote: > The function virEventRegisterImpl() checks the attempt to replace the > registered events. But there is a duplicate variable inside the IF statement. > The variable 'removeHandleImpl' was wrongly repeated. One of them needs to be > replaced

[libvirt] [PATCH] util: Missing 'removeTimeoutImpl' check variable inside virEventRegisterImpl() function.

2017-10-19 Thread Julio Faracco
The function virEventRegisterImpl() checks the attempt to replace the registered events. But there is a duplicate variable inside the IF statement. The variable 'removeHandleImpl' was wrongly repeated. One of them needs to be replaced by 'removeTimeoutImpl'. Signed-off-by: Julio Faracco