Change the return value to avoid g_source_remove at connection handler when muse... 26/221726/1
authorYoungHun Kim <yh8004.kim@samsung.com>
Tue, 7 Jan 2020 05:15:30 +0000 (14:15 +0900)
committerYoungHun Kim <yh8004.kim@samsung.com>
Tue, 7 Jan 2020 06:32:06 +0000 (06:32 +0000)
Change-Id: Ide6274b8c67bb10d661ba5c609dea3b623c2ffec

server/src/muse_server_private.c

index 276ca19..7b86082 100644 (file)
@@ -269,7 +269,7 @@ static gboolean _ms_connection_handler(GIOChannel *source, GIOCondition conditio
        if (!ms_is_server_ready()) {
                LOGW("Now mused state is not ready...");
                _ms_unlock_state();
-               return FALSE;
+               return TRUE;
        }
 
        server_sockfd = g_io_channel_unix_get_fd(source);