Re: [PATCH 06/13] virfirewalld: Drop useless memset() in virFirewallDApplyRule()

2023-08-03 Thread Claudio Fontana
On 8/3/23 12:36, Michal Privoznik wrote: > This is a residue of v6.8.0-rc1~100. The error variable inside of > virFirewallDApplyRule() is already initialized to NULL. There's > no need to memset() it to zero again. > > Signed-off-by: Michal Privoznik Reviewed-by: Claudio Fontana > --- > src/u

[PATCH 06/13] virfirewalld: Drop useless memset() in virFirewallDApplyRule()

2023-08-03 Thread Michal Privoznik
This is a residue of v6.8.0-rc1~100. The error variable inside of virFirewallDApplyRule() is already initialized to NULL. There's no need to memset() it to zero again. Signed-off-by: Michal Privoznik --- src/util/virfirewalld.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/util/virfir