]> xenbits.xensource.com Git - libvirt.git/commitdiff
conf: Rework virDomainKeyWrapDefParseXML
authorJohn Ferlan <jferlan@redhat.com>
Fri, 1 Mar 2019 16:00:48 +0000 (11:00 -0500)
committerJohn Ferlan <jferlan@redhat.com>
Mon, 4 Mar 2019 12:09:06 +0000 (07:09 -0500)
Rewrite the code to make usage of some VIR_AUTOFREE logic.

Signed-off-by: John Ferlan <jferlan@redhat.com>
Reviewed-by: Erik Skultety <eskultet@redhat.com>
src/conf/domain_conf.c

index be6e223e7855d6872a22f50379c3c90fc5170f3d..05c2c9f34e4002d2813443c3dae90e26ddfb4d1f 100644 (file)
@@ -1170,31 +1170,25 @@ static int
 virDomainKeyWrapDefParseXML(virDomainDefPtr def, xmlXPathContextPtr ctxt)
 {
     size_t i;
-    int ret = -1;
     int n;
     VIR_AUTOFREE(xmlNodePtr *) nodes = NULL;
+    VIR_AUTOFREE(virDomainKeyWrapDefPtr) keywrap = NULL;
 
     if ((n = virXPathNodeSet("./keywrap/cipher", ctxt, &nodes)) < 0)
         return n;
 
-    if (VIR_ALLOC(def->keywrap) < 0)
-        goto cleanup;
+    if (VIR_ALLOC(keywrap) < 0)
+        return -1;
 
     for (i = 0; i < n; i++) {
-        if (virDomainKeyWrapCipherDefParseXML(def->keywrap, nodes[i]) < 0)
-            goto cleanup;
+        if (virDomainKeyWrapCipherDefParseXML(keywrap, nodes[i]) < 0)
+            return -1;
     }
 
-    if (!def->keywrap->aes &&
-        !def->keywrap->dea)
-        VIR_FREE(def->keywrap);
+    if (keywrap->aes || keywrap->dea)
+        VIR_STEAL_PTR(def->keywrap, keywrap);
 
-    ret = 0;
-
- cleanup:
-    if (ret < 0)
-        VIR_FREE(def->keywrap);
-    return ret;
+    return 0;
 }