summaryrefslogtreecommitdiffstats
path: root/polyp/mainloop.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-11-18 20:50:44 +0000
committerLennart Poettering <lennart@poettering.net>2004-11-18 20:50:44 +0000
commit8641af3c6d11e3e6710cb946e9a93d0e9f639519 (patch)
treece72b56c7460fed94808ee8023fad89df27c7e12 /polyp/mainloop.c
parenteef235d8795df740eb63cb135bd187b7ab9ac4ea (diff)
* some iochannel fixes
* introduce reference counting in ioline * fix memory leak in socket-client.c * fix double-free error in protocol-esound.c git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@293 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/mainloop.c')
-rw-r--r--polyp/mainloop.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/polyp/mainloop.c b/polyp/mainloop.c
index e13e7b11..f56614ce 100644
--- a/polyp/mainloop.c
+++ b/polyp/mainloop.c
@@ -116,8 +116,7 @@ static void mainloop_io_enable(struct pa_io_event *e, enum pa_io_event_flags eve
e->pollfd->events =
(events & PA_IO_EVENT_INPUT ? POLLIN : 0) |
(events & PA_IO_EVENT_OUTPUT ? POLLOUT : 0) |
- POLLHUP |
- POLLERR;
+ POLLERR | POLLHUP;
}
static void mainloop_io_free(struct pa_io_event *e) {