summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--audio/headset.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/headset.c b/audio/headset.c
index 716b33d3..42df1613 100644
--- a/audio/headset.c
+++ b/audio/headset.c
@@ -1153,8 +1153,10 @@ static gboolean rfcomm_io_cb(GIOChannel *chan, GIOCondition cond,
hs = device->headset;
- if (cond & (G_IO_ERR | G_IO_HUP))
+ if (cond & (G_IO_ERR | G_IO_HUP)) {
+ debug("ERR or HUP on RFCOMM socket");
goto failed;
+ }
if (g_io_channel_read(chan, (gchar *) buf, sizeof(buf) - 1,
&bytes_read) != G_IO_ERROR_NONE)