Delete unnecessary logic 82/84282/1 accepted/tizen/common/20160818.144358 accepted/tizen/ivi/20160818.231825 accepted/tizen/mobile/20160818.231651 accepted/tizen/tv/20160818.231757 accepted/tizen/wearable/20160818.231724 submit/tizen/20160818.052348
authorMinje Ahn <minje.ahn@samsung.com>
Thu, 18 Aug 2016 01:03:18 +0000 (10:03 +0900)
committerMinje Ahn <minje.ahn@samsung.com>
Thu, 18 Aug 2016 01:03:18 +0000 (10:03 +0900)
Change-Id: I0f2fff0b0f11af490751c8005dc880d3ee1bc536
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
server/thumb-server-internal.c

index 3d964de..f42d1d8 100755 (executable)
@@ -41,7 +41,6 @@
 #define THUMB_DEFAULT_WIDTH 320
 #define THUMB_DEFAULT_HEIGHT 240
 #define THUMB_BLOCK_SIZE 512
-#define THUMB_ROOT_UID "451"
 #define THUMB_COMM_SOCK_PATH tzplatform_mkpath(TZ_SYS_RUN, "media-server/media_ipc_thumbcomm.socket")
 #define THUMB_EMPTY_STR ""
 
@@ -369,13 +368,6 @@ gboolean _thumb_server_read_socket(GIOChannel *src,
                return FALSE;
        }
 
-       if (recv_msg.msg_type == THUMB_REQUEST_KILL_SERVER && strncmp(credentials.uid, THUMB_ROOT_UID, strlen(THUMB_ROOT_UID)) != 0) {
-               thumb_err("Only root can send THUMB_REQUEST_KILL_SERVER request");
-               _thumb_server_send_deny_message(client_sock);
-               close(client_sock);
-               return TRUE;
-       }
-
        if (recv_msg.msg_type != THUMB_REQUEST_KILL_SERVER) {
                if (ms_cynara_check(&credentials, MEDIA_STORAGE_PRIVILEGE) != MS_MEDIA_ERR_NONE) {
                        thumb_err("Cynara denied access to process request");