mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
cpu_x86: Handle error in x86DataToCPU when calling x86DataAdd
Commit 9c9620af called x86DataAdd without checking for an error, so add the error checking. Found by Coverity Signed-off-by: John Ferlan <jferlan@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
5acb4eede2
commit
fa7d0cc1e7
@ -822,7 +822,8 @@ x86DataToCPU(const virCPUx86Data *data,
|
||||
for (blocker = hvModel->blockers; *blocker; blocker++) {
|
||||
if ((feature = x86FeatureFind(map, *blocker)) &&
|
||||
!x86DataIsSubset(©, &feature->data))
|
||||
x86DataAdd(&modelData, &feature->data);
|
||||
if (x86DataAdd(&modelData, &feature->data) < 0)
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user