[libvirt] [PATCH v1 08/21] openvz_conf.c: remove unneeded cleanup label

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


Signed-off-by: Daniel Henrique Barboza <danielhb413 at gmail.com>
---
 src/openvz/openvz_conf.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/openvz/openvz_conf.c b/src/openvz/openvz_conf.c
index 4646308c48..f12c91aa88 100644
--- a/src/openvz/openvz_conf.c
+++ b/src/openvz/openvz_conf.c
@@ -873,12 +873,11 @@ openvzLocateConfDir(void)
     while (conf_dir_list[i]) {
         if (virFileExists(conf_dir_list[i])) {
             ret = g_strdup(conf_dir_list[i]);
-            goto cleanup;
+            return ret;
         }
         i++;
     }
 
- cleanup:
     return ret;
 }
 
-- 
2.21.0




More information about the libvir-list mailing list