This use of DIR* was re-using the same function-scope DIR* each time
through a for loop, and due to multiple error gotos in the loop, it
needed to have the scope of the DIR* reduced to just the loop at the
same time as switching to g_autoptr. That's what this patch does.
Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
size_t i = 0;
virBitmapPtr cpus = NULL;
ssize_t pos = -1;
- DIR *dirp = NULL;
int ret = -1;
char *path = NULL;
char *type = NULL;
while ((pos = virBitmapNextSetBit(cpus, pos)) >= 0) {
int rv = -1;
+ g_autoptr(DIR) dirp = NULL;
VIR_FREE(path);
path = g_strdup_printf("%s/cpu/cpu%zd/cache/", SYSFS_SYSTEM_PATH, pos);
- VIR_DIR_CLOSE(dirp);
- dirp = NULL;
-
rv = virDirOpenIfExists(&dirp, path);
if (rv < 0)
goto cleanup;
cleanup:
VIR_FREE(type);
VIR_FREE(path);
- VIR_DIR_CLOSE(dirp);
virCapsHostCacheBankFree(bank);
virBitmapFree(cpus);
return ret;