projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f0f352
)
spice: fix file handle cleanup
author
Gerd Hoffmann
<kraxel@redhat.com>
Fri, 21 Oct 2011 13:56:21 +0000
(15:56 +0200)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Tue, 25 Oct 2011 12:00:54 +0000
(14:00 +0200)
Setting both read and write handlers to NULL in qemu_set_fd_handler
is not enougth to make qemu purge the file handle from the list.
We must set opaque to NULL too.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
ui/spice-core.c
patch
|
blob
|
history
diff --git
a/ui/spice-core.c
b/ui/spice-core.c
index be52356e63ab20ea4af436f783316b2dcab0824e..6d3dab6960f93ebd7167e269e81eed07735b4ce6 100644
(file)
--- a/
ui/spice-core.c
+++ b/
ui/spice-core.c
@@
-133,7
+133,7
@@
static SpiceWatch *watch_add(int fd, int event_mask, SpiceWatchFunc func, void *
static void watch_remove(SpiceWatch *watch)
{
-
watch_update_mask(watch, 0
);
+
qemu_set_fd_handler(watch->fd, NULL, NULL, NULL
);
QTAILQ_REMOVE(&watches, watch, next);
g_free(watch);
}