With recent work on storing original PCI stats in
_virDomainHostdevSubsysPCI struct, the virhostdevtest can across
a latent bug we had. Only some parts of the
virDomainHostdevSubsys structure are initialized. Incidentally,
subsys->u.pci.origstates is not one of them. This lead to
unexpected crashes at runtime.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
size_t i;
for (i = 0; i < nhostdevs; i++) {
- virDomainHostdevSubsys subsys;
+ virDomainHostdevSubsys subsys = {0};
hostdevs[i] = virDomainHostdevDefNew();
if (!hostdevs[i])
goto cleanup;