On 07/15/2018 01:21 PM, Paolo Bonzini wrote: > The file descriptor for /sys/power/state was never closed. Reported > by Coverity. > > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4...@amsat.org> > --- > qga/commands-posix.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/qga/commands-posix.c b/qga/commands-posix.c > index 233f78a406..4160aceaed 100644 > --- a/qga/commands-posix.c > +++ b/qga/commands-posix.c > @@ -1651,6 +1651,7 @@ static bool linux_sys_state_supports_mode(SuspendMode > mode, Error **errp) > } > > ret = read(fd, buf, sizeof(buf) - 1); > + close(fd); > if (ret <= 0) { > return false; > } >