[host] app: don't read from UUID if none is returned

This allows the Linux host to start.
This commit is contained in:
Quantum 2022-01-26 05:29:53 -05:00 committed by Geoffrey McRae
parent b0568ca404
commit f247d7f0da

View File

@ -581,7 +581,8 @@ static bool newKVMFRData(KVMFRUserData * dst)
};
const uint8_t * uuid = os_getUUID();
memcpy(vmInfo.uuid, uuid, 16);
if (uuid)
memcpy(vmInfo.uuid, uuid, 16);
strncpy(vmInfo.capture, app.iface->getName(), sizeof(vmInfo.capture) - 1);