[libvirt PATCH 4/6] vmx: use g_autofree in virVMXParseSerial

Ján Tomko jtomko at redhat.com
Wed Jun 22 05:35:32 UTC 2022


Signed-off-by: Ján Tomko <jtomko at redhat.com>
---
 src/vmx/vmx.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/src/vmx/vmx.c b/src/vmx/vmx.c
index 282e9562e0..43ddee5bb6 100644
--- a/src/vmx/vmx.c
+++ b/src/vmx/vmx.c
@@ -2895,13 +2895,13 @@ virVMXParseSerial(virVMXContext *ctx, virConf *conf, int port,
     bool startConnected = false;
 
     char fileType_name[48] = "";
-    char *fileType = NULL;
+    g_autofree char *fileType = NULL;
 
     char fileName_name[48] = "";
-    char *fileName = NULL;
+    g_autofree char *fileName = NULL;
 
     char network_endPoint_name[48] = "";
-    char *network_endPoint = NULL;
+    g_autofree char *network_endPoint = NULL;
 
     g_autoptr(virURI) parsedUri = NULL;
 
@@ -3048,10 +3048,6 @@ virVMXParseSerial(virVMXContext *ctx, virConf *conf, int port,
         g_clear_pointer(def, virDomainChrDefFree);
     }
 
-    VIR_FREE(fileType);
-    VIR_FREE(fileName);
-    VIR_FREE(network_endPoint);
-
     return result;
 }
 
-- 
2.34.1



More information about the libvir-list mailing list