OSDN Git Service

qga: fix missing closedir() in qmp_guest_get_disks()
authorMichael Roth <michael.roth@amd.com>
Sun, 8 Nov 2020 14:37:41 +0000 (08:37 -0600)
committerMichael Roth <michael.roth@amd.com>
Mon, 9 Nov 2020 20:07:14 +0000 (14:07 -0600)
We opendir("/sys/block") at the beginning of the function, but we never
close it prior to returning.

Fixes: Coverity CID 1436130
Fixes: fed3956429d5 ("qga: add implementation of guest-get-disks for Linux")
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Cc: Tomáš Golembiovský <tgolembi@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>
qga/commands-posix.c

index 3711080..12c1ba5 100644 (file)
@@ -1443,6 +1443,9 @@ GuestDiskInfoList *qmp_guest_get_disks(Error **errp)
         get_disk_deps(disk_dir, disk);
         ret = get_disk_partitions(ret, de->d_name, disk_dir, dev_name);
     }
+
+    closedir(dp);
+
     return ret;
 }