summaryrefslogtreecommitdiffstats
path: root/polyp/iochannel.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/iochannel.c')
-rw-r--r--polyp/iochannel.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/polyp/iochannel.c b/polyp/iochannel.c
index 813347d4..1aa70b93 100644
--- a/polyp/iochannel.c
+++ b/polyp/iochannel.c
@@ -173,8 +173,16 @@ int pa_iochannel_is_hungup(struct pa_iochannel*io) {
ssize_t pa_iochannel_write(struct pa_iochannel*io, const void*data, size_t l) {
ssize_t r;
+ assert(io);
+ assert(data);
+ assert(l);
+ assert(io->ofd >= 0);
+
+
assert(io && data && l && io->ofd >= 0);
+
+
if ((r = write(io->ofd, data, l)) >= 0) {
io->writable = 0;
enable_mainloop_sources(io);