Re: [PATCH 06/25] conf: eliminate useless error label in virDomainFeaturesDefParse()

2020-06-25 Thread Ján Tomko
On a Wednesday in 2020, Laine Stump wrote: The error: label in this function just does "return -1", so replace all the "goto error" in the function with "return -1". I split this out from virDomainDefParse quickly as a build breaker fix and forgot to follow up with this cleanup. Signed-off-b

[PATCH 06/25] conf: eliminate useless error label in virDomainFeaturesDefParse()

2020-06-24 Thread Laine Stump
The error: label in this function just does "return -1", so replace all the "goto error" in the function with "return -1". Signed-off-by: Laine Stump --- src/conf/domain_conf.c | 91 -- 1 file changed, 44 insertions(+), 47 deletions(-) diff --git a/src/co