Get UID from list using tts_config_client_s structure 94/268294/4
authorSuyeon Hwang <stom.hwang@samsung.com>
Mon, 20 Dec 2021 04:53:26 +0000 (13:53 +0900)
committerSuyeon Hwang <stom.hwang@samsung.com>
Mon, 27 Dec 2021 06:30:03 +0000 (15:30 +0900)
commitbee558fe9bc6722923c15ed36fa8e9dd401b79b0
tree3ee7610a790c839b3a0274217b22bec1ecfe8811
parent5347b80d34fae5d835fc8a60942799dc7aedce4f
Get UID from list using tts_config_client_s structure

Current code converts the type of element as integer. However, the element of the list is instance
of tts_config_client_s structure. Because the first member of the structure is uid, so current code
has no problem until now. But this can occur problem if the type of uid or the order of member is
changed.

To solve this problem, this patch changes the type from integer to the structure. This can provide
safe access to member.

Change-Id: I168011529efec4a59a1a1abc8b7d203e412a4972
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
common/tts_config_mgr.c