]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
chExtractVersion: Drop @ret
authorMichal Privoznik <mprivozn@redhat.com>
Fri, 4 Jun 2021 13:08:32 +0000 (15:08 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Fri, 4 Jun 2021 14:39:00 +0000 (16:39 +0200)
After previous patches, the @ret variable and the 'cleanup'
label are redundant. Remove them.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
src/ch/ch_conf.c

index c67c815d45cf413c5e118dfd5c2623d36002d524..5f156dfe441469118ccec3d59ef63eee544929c7 100644 (file)
@@ -194,7 +194,6 @@ virCHDriverConfigDispose(void *obj)
 int
 chExtractVersion(virCHDriver *driver)
 {
-    int ret = -1;
     unsigned long version;
     g_autofree char *help = NULL;
     char *tmp = NULL;
@@ -209,7 +208,7 @@ chExtractVersion(virCHDriver *driver)
     virCommandSetOutputBuffer(cmd, &help);
 
     if (virCommandRun(cmd, NULL) < 0)
-        goto cleanup;
+        return -1;
 
     tmp = help;
 
@@ -217,24 +216,21 @@ chExtractVersion(virCHDriver *driver)
     if ((tmp = STRSKIP(tmp, "cloud-hypervisor v")) == NULL) {
         virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                        _("Unexpected output of cloud-hypervisor binary"));
-        goto cleanup;
+        return -1;
     }
 
     if (virParseVersionString(tmp, &version, true) < 0) {
         virReportError(VIR_ERR_INTERNAL_ERROR,
                        _("Unable to parse cloud-hypervisor version: %s"), tmp);
-        goto cleanup;
+        return -1;
     }
 
     if (version < MIN_VERSION) {
         virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                        _("Cloud-Hypervisor version is too old (v15.0 is the minimum supported version)"));
-        goto cleanup;
+        return -1;
     }
 
     driver->version = version;
-    ret = 0;
-
- cleanup:
-    return ret;
+    return 0;
 }