Return FALSE so that source callback is not maintained when an exception occurs 22/227022/1 accepted/tizen/unified/20200309.215640 submit/tizen/20200309.061014 submit/tizen/20200309.070913
authorYoungHun Kim <yh8004.kim@samsung.com>
Mon, 9 Mar 2020 05:25:26 +0000 (14:25 +0900)
committerYoungHun Kim <yh8004.kim@samsung.com>
Mon, 9 Mar 2020 06:06:47 +0000 (15:06 +0900)
Change-Id: I5bbd839be999796435db171eac753be974e23801

packaging/mused.spec
server/src/muse_server_private.c

index a289ac3..a1d4a8f 100644 (file)
@@ -1,6 +1,6 @@
 Name:       mused
 Summary:    A multimedia daemon
-Version:    0.3.101
+Version:    0.3.102
 Release:    0
 Group:      System/Libraries
 License:    Apache-2.0
index c0d382e..604a9a7 100644 (file)
@@ -273,7 +273,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 TRUE;
+               return FALSE;
        }
 
        server_sockfd = g_io_channel_unix_get_fd(source);
@@ -879,7 +879,6 @@ void ms_init(char **argv)
                                cmd_dispatcher[MUSE_MODULE_COMMAND_INITIALIZE](NULL);
                }
        }
-
 #ifdef MUSE_TTRACE_LOG
        trace_end();
 #endif