From f8553e0b584b4f90ffa15e0468821ef77dc9e6bf Mon Sep 17 00:00:00 2001 From: Jagrat Patidar Date: Tue, 22 Sep 2020 16:06:29 +0530 Subject: [PATCH] This patch fixes sound player flickering issue TSIX-6495 Change-Id: I597f812614db101dcc8e08d3aa90ad927af1eedc --- src/mp-main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mp-main.c b/src/mp-main.c index 4d5ede4..c8f1bda 100755 --- a/src/mp-main.c +++ b/src/mp-main.c @@ -1056,7 +1056,8 @@ _mp_main_parse_service(struct appdata *ad, app_control_h app_control, ad->disable_detail_view = false; } - if (!app_control_get_extra_data(app_control, APP_EXIT_STATUS, &value)) { + int check = app_control_get_extra_data(app_control, APP_EXIT_STATUS, &value); + if (!check || check == APP_CONTROL_ERROR_KEY_NOT_FOUND) { DEBUG_TRACE("Application Exit Status is %s", value); ad->exit_status = false; } else { -- 2.7.4