On 09/10/2018 02:19 PM, Bjoern Walk wrote: > Michal Privoznik <mprivozn@xxxxxxxxxx> [2018-09-10, 11:36AM +0200]: >> +int >> +virSecurityManagerMetadataLock(virSecurityManagerPtr mgr, >> + const char * const *paths, >> + size_t npaths) >> +{ >> + virLockManagerPtr lock; >> + virTimeBackOffVar timebackoff; >> + int fd = -1; >> + int rv; > > gcc complains that rv might be uninitialized. Right, if .. > >> + int ret = -1; >> + >> + virMutexLock(&lockManagerMutex); >> + >> + if (!(lock = virSecurityManagerNewLockManager(mgr, paths, npaths))) >> + goto cleanup; >> + >> + if (virTimeBackOffStart(&timebackoff, 1, LOCK_ACQUIRE_TIMEOUT * 1000) < 0) >> + goto cleanup; >> + while (virTimeBackOffWait(&timebackoff)) { .. this is never true (which is impossible). >> + rv = virLockManagerAcquire(lock, NULL, >> + VIR_LOCK_MANAGER_ACQUIRE_ROLLBACK, >> + VIR_DOMAIN_LOCK_FAILURE_DEFAULT, &fd); >> + >> + if (rv >= 0) >> + break; >> + >> + if (virGetLastErrorCode() == VIR_ERR_RESOURCE_BUSY) >> + continue; >> + >> + goto cleanup; >> + } >> + >> + if (rv < 0) >> + goto cleanup; Okay, I'll fix this is my local branch. Thanks, Michal -- libvir-list mailing list libvir-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvir-list