diff options
| author | Markus Armbruster | 2013-01-11 11:25:01 +0100 |
|---|---|---|
| committer | Michael Roth | 2013-01-14 19:07:59 +0100 |
| commit | d4f4a3efdf0a71621ae5351176f5f15b522d0026 (patch) | |
| tree | 38579b1bd2aaede9f6bbbf76b07c8ffff57657c8 /qga | |
| parent | qemu-ga: Plug fd leak on ga_channel_listen_accept() error path (diff) | |
| download | qemu-d4f4a3efdf0a71621ae5351176f5f15b522d0026.tar.gz qemu-d4f4a3efdf0a71621ae5351176f5f15b522d0026.tar.xz qemu-d4f4a3efdf0a71621ae5351176f5f15b522d0026.zip | |
qemu-ga: Plug fd leak on ga_channel_open() error paths
Spotted by Coverity.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga')
| -rw-r--r-- | qga/channel-posix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qga/channel-posix.c b/qga/channel-posix.c index 9a5c05d666..05e83860ca 100644 --- a/qga/channel-posix.c +++ b/qga/channel-posix.c @@ -154,6 +154,7 @@ static gboolean ga_channel_open(GAChannel *c, const gchar *path, GAChannelMethod ret = ga_channel_client_add(c, fd); if (ret) { g_critical("error adding channel to main loop"); + close(fd); return false; } break; |
