[Problem]
If client application checked server_name, it was not same with the app_id of the server application.
[Solution]
The dbus does not support special character, so the app_id as interface was modified to valid name for dbus.
As the result, the modified app_id was not same with original app_id of the server application.
The interface used by dbus already has been checked before dbus function is called.
So I remove to check valid app_id and modify it.
Change-Id: I81147989af5250ec32d79833ddd84c72af1dec99
Signed-off-by: Jiyong Min <jiyong.min@samsung.com>
Name: capi-media-controller
Summary: A media controller library in Tizen Native API
-Version: 0.1.31
+Version: 0.1.32
Release: 1
Group: Multimedia/API
License: Apache-2.0
return MEDIA_CONTROLLER_ERROR_INVALID_OPERATION;
}
- _mc_util_check_valid_name(temp, name);
+ *name = g_strdup(temp);
return MEDIA_CONTROLLER_ERROR_NONE;
}