[libvirt] [PATCH 04/10] conf: Clean up virDomain{Memory, Shmem}DefParseXML()

Andrea Bolognani abologna at redhat.com
Fri Jun 30 11:17:04 UTC 2017


On Fri, 2017-06-30 at 12:50 +0200, Peter Krempa wrote:
> >      if (virDomainDeviceInfoParseXML(node, NULL, &def->info, flags) < 0)
> > -        goto cleanup;
> > -
> > +        goto error;
> >  
> > -    ret = def;
> > -    def = NULL;
> >   cleanup:
> > -    ctxt->node = save;
> >      VIR_FREE(tmp);
> > +    ctxt->node = save;
> > +    return def;
> > +
> > + error:
> >      virDomainShmemDefFree(def);
> > -    return ret;
> > +    def = NULL;
> > +    goto cleanup;
> 
> I don't see how this is better than it was before.

It's only better in that it follows the same structure as
other *ParseXML() functions in the same file. Consistency
FTW! Plus we can drop the 'ret' local variable.

-- 
Andrea Bolognani / Red Hat / Virtualization




More information about the libvir-list mailing list