Remove unnecessary value 16/227616/1
authorwn.jang <wn.jang@samsung.com>
Fri, 13 Mar 2020 06:23:27 +0000 (15:23 +0900)
committerwn.jang <wn.jang@samsung.com>
Fri, 13 Mar 2020 06:23:36 +0000 (15:23 +0900)
commited89a870029062dc9f77cbfe27b18a7ac1b21d49
tree97a8d7b739fb13ddf917842b17f7eccfadcf99b6
parenta4f0f6517231c2087fc243e6e1df963428f6b459
Remove unnecessary value

This is related to thread safety error.
The problem happened at following codes in ttsd_player_play() function.

    if (NULL != g_playing_info) {
        if (uid == g_playing_info->uid) {

g_playing_info can be NULL on __play_thread() function which is including this removed codes.
So, this codes has been removed.

Change-Id: I1183904f34712c0747f99e126edb3f444ffdc5b3
server/ttsd_player.c