Change the return value to execute the dispatch only once when no instance 13/255413/2 submit/tizen/20210319.024010
authorYoungHun Kim <yh8004.kim@samsung.com>
Thu, 18 Mar 2021 04:49:30 +0000 (13:49 +0900)
committerYoungHun Kim <yh8004.kim@samsung.com>
Thu, 18 Mar 2021 23:11:30 +0000 (23:11 +0000)
 - It is to prevent unnecessary recv() after dispatch is normally completed.

Change-Id: I3875f65690a1faa4257ce7d2dd55c798f28adc03

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

index f013008..717676f 100644 (file)
@@ -1,6 +1,6 @@
 Name:       mused
 Summary:    A multimedia daemon
-Version:    0.3.134
+Version:    0.3.135
 Release:    0
 Group:      System/Libraries
 License:    Apache-2.0
index cdea2cb..dce5321 100644 (file)
@@ -242,7 +242,7 @@ static gboolean _ms_ipc_dispatch_no_instance(muse_module_h m, void *jobj)
 out:
        ms_module_dispatch_unlock(m);
 
-       return TRUE;
+       return FALSE;
 }
 
 static gpointer _ms_ipc_dispatch_worker(gpointer data)