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].
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) {
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"));
}
insertAt = 0;
- primaryVideo = true;
}
if (VIR_INSERT_ELEMENT_INPLACE(def->videos,
insertAt,