From: nibha.sharma Date: Tue, 27 Jun 2017 11:08:25 +0000 (+0530) Subject: [DoNotMerge][TBT][Sound][NonACR][DPTTIZEN-2859,Fixed crash issue for sound tbt module] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=317896c8dd11eaab5c4512712d4c28c790b67773;p=test%2Ftct%2Fnative%2Fbehavior.git [DoNotMerge][TBT][Sound][NonACR][DPTTIZEN-2859,Fixed crash issue for sound tbt module] Change-Id: Ic11af0ac89ae1dd823b44ec5592b388f14b0ab61 Signed-off-by: nibha.sharma --- diff --git a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk index c108ecf..5ec0be4 100644 Binary files a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk and b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk differ diff --git a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk index 91e1325..e518664 100644 Binary files a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk and b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk differ diff --git a/tbtcoreapp/src/view/tbt-sound-view.c b/tbtcoreapp/src/view/tbt-sound-view.c index cadeb76..9caeb19 100644 --- a/tbtcoreapp/src/view/tbt-sound-view.c +++ b/tbtcoreapp/src/view/tbt-sound-view.c @@ -392,6 +392,9 @@ static void start_player(sound_view *this) } if(((get_device_type() == DEVICE_WEARABLE_216_432)||(get_device_type() == DEVICE_WEARABLE_360_360)) && this->view->tbt_info->apptype == TBT_APP_SOUND_VOLUME){ + if (this->progressbar_timer) + ecore_timer_del(this->progressbar_timer); + else this->progressbar_timer = ecore_timer_add(0.1, __progressbar_timer_cb, this); } }