mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 19:32:19 +00:00
conf: delete useless primaryVideo variable
If we encounter a video device with primary=yes, we insert it at def->videos[0]. There is no need to record this in a separate variable, just check if there already is a primary video at def->videos[0].
This commit is contained in:
parent
b2b8fc919d
commit
35e3c4a684
@ -15088,7 +15088,6 @@ virDomainDefParseXML(xmlDocPtr xml,
|
||||
bool usb_none = false;
|
||||
bool usb_other = false;
|
||||
bool usb_master = false;
|
||||
bool primaryVideo = false;
|
||||
char *netprefix = NULL;
|
||||
|
||||
if (flags & VIR_DOMAIN_DEF_PARSE_VALIDATE) {
|
||||
@ -16427,7 +16426,7 @@ virDomainDefParseXML(xmlDocPtr xml,
|
||||
goto error;
|
||||
|
||||
if (video->primary) {
|
||||
if (primaryVideo) {
|
||||
if (def->nvideos != 0 && def->videos[0]->primary) {
|
||||
virDomainVideoDefFree(video);
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
||||
_("Only one primary video device is supported"));
|
||||
@ -16435,7 +16434,6 @@ virDomainDefParseXML(xmlDocPtr xml,
|
||||
}
|
||||
|
||||
insertAt = 0;
|
||||
primaryVideo = true;
|
||||
}
|
||||
if (VIR_INSERT_ELEMENT_INPLACE(def->videos,
|
||||
insertAt,
|
||||
|
Loading…
x
Reference in New Issue
Block a user