mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 01:34:11 +03:00
qemu: fix uninitialized variable warning
This commit fixes qemu/qemu_driver.c: In function 'qemuDomainModifyDeviceFlags': qemu/qemu_driver.c:4041:8: warning: 'ret' may be used uninitialized in this function [-Wuninitialized] qemu/qemu_driver.c:4013:9: note: 'ret' was declared here The variable is set to -1 so that the error paths are taken when the code to set it didn't get a chance to run. Without initializing it, we could return some an undefined value from this function. While I was at it, I made a trivial whitespace change in the same function to improve readability.
This commit is contained in:
parent
170f2a8747
commit
b15a8a1bdf
@ -4010,7 +4010,7 @@ qemuDomainChangeDiskMediaLive(virDomainObjPtr vm,
|
||||
{
|
||||
virDomainDiskDefPtr disk = dev->data.disk;
|
||||
virCgroupPtr cgroup = NULL;
|
||||
int ret;
|
||||
int ret = -1;
|
||||
|
||||
if (qemuCgroupControllerActive(driver, VIR_CGROUP_CONTROLLER_DEVICES)) {
|
||||
if (virCgroupForDomain(driver->cgroup,
|
||||
|
Loading…
Reference in New Issue
Block a user