From dba04e7fa070a79415ea16141ad2e2ebd4f23033 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Mon, 12 Aug 2013 17:29:40 -0500 Subject: [PATCH] VMX: Some serial ports are not actually connected Sometimes a serial port might not be actually wired to a device when the user does not have the VM powered on and we should not consider this a fatal error. --- src/vmx/vmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vmx/vmx.c b/src/vmx/vmx.c index 11e8a626e7..06a22a72f5 100644 --- a/src/vmx/vmx.c +++ b/src/vmx/vmx.c @@ -2696,7 +2696,7 @@ virVMXParseSerial(virVMXContext *ctx, virConfPtr conf, int port, /* vmx:fileName -> def:data.file.path */ if (virVMXGetConfigString(conf, fileName_name, &fileName, false) < 0) { - goto cleanup; + goto ignore; } /* vmx:network.endPoint -> def:data.tcp.listen */ -- 2.47.2