diff --git a/src/storage/storage_backend.c b/src/storage/storage_backend.c index 1ee83aa30824468abc07d90254fe531fd7b440da..8eb5b04635fb5cf87b949d79477d2d8e1a04e7da 100644 --- a/src/storage/storage_backend.c +++ b/src/storage/storage_backend.c @@ -1625,16 +1625,19 @@ virStorageBackendUpdateVolTargetInfo(virStorageSourcePtr target, if (lseek(fd, 0, SEEK_SET) == (off_t)-1) { virReportSystemError(errno, _("cannot seek to start of '%s'"), target->path); + ret = -1; goto cleanup; } if ((len = virFileReadHeaderFD(fd, len, &buf)) < 0) { virReportSystemError(errno, _("cannot read header '%s'"), target->path); + ret = -1; goto cleanup; } if (!(meta = virStorageFileGetMetadataFromBuf(target->path, buf, len, target->format, NULL))) { + ret = -1; goto cleanup; }