[libvirt] [PATCH v1 18/21] suspend.c: remove unneeded cleanup label

Daniel Henrique Barboza danielhb413 at gmail.com
Mon Oct 21 18:19:08 UTC 2019


Signed-off-by: Daniel Henrique Barboza <danielhb413 at gmail.com>
---
 examples/c/domain/suspend.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/examples/c/domain/suspend.c b/examples/c/domain/suspend.c
index af61129ecc..322f0d60df 100644
--- a/examples/c/domain/suspend.c
+++ b/examples/c/domain/suspend.c
@@ -86,7 +86,6 @@ parse_argv(int argc, char *argv[],
            const char **dom_name,
            unsigned int *seconds)
 {
-    int ret = -1;
     int arg;
     unsigned long val;
     char *p;
@@ -116,12 +115,12 @@ parse_argv(int argc, char *argv[],
             val = strtoul(optarg, &p, 10);
             if (errno || *p || p == optarg) {
                 ERROR("Invalid number: '%s'", optarg);
-                goto cleanup;
+                return -1;
             }
             *seconds = val;
             if (*seconds != val) {
                 ERROR("Integer overflow: %ld", val);
-                goto cleanup;
+                return -1;
             }
             break;
         case ':':
@@ -142,9 +141,7 @@ parse_argv(int argc, char *argv[],
     if (argc > optind)
         *dom_name = argv[optind];
 
-    ret = 0;
- cleanup:
-    return ret;
+    return 0;
 }
 
 static int
-- 
2.21.0




More information about the libvir-list mailing list