]> git.ipfire.org Git - thirdparty/qemu.git/commit
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)
commitb1b9ab1c04d560f86d8da3dfca4d8b21de75fee6
tree32a2f6e92a5d3e0019523cd9f073b2f2ac90e522
parent3493c36f0371777c62d1d72b205b0eb6117e2156
qga: fix missing closedir() in qmp_guest_get_disks()

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