mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-24 14:45:24 +00:00
parallels: fix leaks in parallelsFindVolumes
We always have to close opened dir and free 'path'. Signed-off-by: Dmitry Guryanov <dguryanov@parallels.com>
This commit is contained in:
parent
766e0c91d7
commit
7abe342d96
@ -86,13 +86,14 @@ parallelsFindVolumes(virStoragePoolObjPtr pool)
|
||||
{
|
||||
DIR *dir;
|
||||
struct dirent *ent;
|
||||
char *path;
|
||||
char *path = NULL;
|
||||
int ret = -1;
|
||||
|
||||
if (!(dir = opendir(pool->def->target.path))) {
|
||||
virReportSystemError(errno,
|
||||
_("cannot open path '%s'"),
|
||||
pool->def->target.path);
|
||||
goto cleanup;
|
||||
return -1;
|
||||
}
|
||||
|
||||
while ((ent = readdir(dir)) != NULL) {
|
||||
@ -100,18 +101,21 @@ parallelsFindVolumes(virStoragePoolObjPtr pool)
|
||||
continue;
|
||||
|
||||
if (!(path = virFileBuildPath(pool->def->target.path,
|
||||
ent->d_name, NULL)))
|
||||
goto no_memory;
|
||||
ent->d_name, NULL))) {
|
||||
virReportOOMError();
|
||||
goto cleanup;
|
||||
}
|
||||
if (!parallelsStorageVolumeDefine(pool, NULL, path, false))
|
||||
goto cleanup;
|
||||
|
||||
VIR_FREE(path);
|
||||
}
|
||||
|
||||
return 0;
|
||||
no_memory:
|
||||
virReportOOMError();
|
||||
ret = 0;
|
||||
cleanup:
|
||||
return -1;
|
||||
VIR_FREE(path);
|
||||
closedir(dir);
|
||||
return ret;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user