mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
vmx: use g_autofree in virVMXParseSerial
Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user