summaryrefslogtreecommitdiff
path: root/android/ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'android/ipc.c')
-rw-r--r--android/ipc.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/android/ipc.c b/android/ipc.c
index 8098409ff..4f2428ccb 100644
--- a/android/ipc.c
+++ b/android/ipc.c
@@ -166,12 +166,7 @@ GIOChannel *ipc_connect(const char *path, size_t size, GIOFunc connect_cb,
memcpy(addr.sun_path, path, size);
- if (connect(sk, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
- error("IPC: failed to connect HAL socket %s: %d (%s)", &path[1],
- errno, strerror(errno));
- g_io_channel_unref(io);
- return NULL;
- }
+ connect(sk, (struct sockaddr *) &addr, sizeof(addr));
cond = G_IO_OUT | G_IO_ERR | G_IO_HUP | G_IO_NVAL;