summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/modules/module-oss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/module-oss.c b/src/modules/module-oss.c
index 8d088997..82b5b6ce 100644
--- a/src/modules/module-oss.c
+++ b/src/modules/module-oss.c
@@ -849,7 +849,7 @@ static void thread_func(void *userdata) {
/* Render some data and write it to the dsp */
- if (u->sink && u->sink->thread_info.state != PA_SINK_UNLINKED && u->fd >= 0 && (revents & POLLOUT)) {
+ if (u->sink && PA_SINK_OPENED(u->sink->thread_info.state) && (revents & POLLOUT)) {
if (u->use_mmap) {
@@ -939,7 +939,7 @@ static void thread_func(void *userdata) {
/* Try to read some data and pass it on to the source driver */
- if (u->source && u->source->thread_info.state != PA_SOURCE_UNLINKED && u->fd >= 0 && ((revents & POLLIN))) {
+ if (u->source && PA_SOURCE_OPENED(u->source->thread_info.state) && ((revents & POLLIN))) {
if (u->use_mmap) {