]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
hyperv: use g_auto for WsXmlDocH in hypervDomainAttachCDROM
authorMatt Coleman <mcoleman@datto.com>
Thu, 21 Jan 2021 18:51:35 +0000 (13:51 -0500)
committerLaine Stump <laine@redhat.com>
Fri, 22 Jan 2021 19:04:29 +0000 (14:04 -0500)
Signed-off-by: Matt Coleman <matt@datto.com>
Reviewed-by: Laine Stump <laine@redhat.com>
src/hyperv/hyperv_driver.c

index b81cedf42612db8112ad56ac0cb0b2c14d34041e..bdc084790ad08c9366420ae53e8b9f5d8e54422f 100644 (file)
@@ -722,8 +722,7 @@ hypervDomainAttachCDROM(virDomainPtr domain,
                         Msvm_ResourceAllocationSettingData *controller,
                         const char *hostname)
 {
-    int result = -1;
-    WsXmlDocH response = NULL;
+    g_auto(WsXmlDocH) response = NULL;
     g_autofree char *driveInstanceID = NULL;
 
     VIR_DEBUG("Now attaching CD/DVD '%s' with address %d to bus %d of type %d",
@@ -731,22 +730,16 @@ hypervDomainAttachCDROM(virDomainPtr domain,
               disk->info.addr.drive.controller, disk->bus);
 
     if (hypervDomainAddOpticalDrive(domain, disk, controller, hostname, &response) < 0)
-        goto cleanup;
+        return -1;
 
     driveInstanceID = hypervGetInstanceIDFromXMLResponse(response);
     if (!driveInstanceID)
-        goto cleanup;
+        return -1;
 
     if (hypervDomainAddOpticalDisk(domain, disk, hostname, driveInstanceID) < 0)
-        goto cleanup;
-
-    result = 0;
-
- cleanup:
-    if (response)
-        ws_xml_destroy_doc(response);
+        return -1;
 
-    return result;
+    return 0;
 }