mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 21:55:25 +00:00
qemu: Fix build error introduced in 653137eb95
The build failure is caused by a false positive of some static analysys steps done by gcc (that don't happen on -O0).
This commit is contained in:
parent
653137eb95
commit
e2f14211cf
@ -15807,7 +15807,7 @@ qemuDomainSetBlockIoTune(virDomainPtr dom,
|
||||
int ret = -1;
|
||||
size_t i;
|
||||
int idx = -1;
|
||||
int conf_idx;
|
||||
int conf_idx = -1;
|
||||
bool set_bytes = false;
|
||||
bool set_iops = false;
|
||||
virQEMUDriverConfigPtr cfg = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user