From: Jihun Park Date: Tue, 27 Jun 2017 23:47:40 +0000 (+0000) Subject: [TBT][Sound][NonACR][DPTTIZEN-2859,Fixed crash issue for sound tbt module]"" X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F89%2F135989%2F2;p=test%2Ftct%2Fnative%2Fbehavior.git [TBT][Sound][NonACR][DPTTIZEN-2859,Fixed crash issue for sound tbt module]"" This reverts commit 889abbfb8e3faef66bf5ead23387cef87cc9d5d3. Change-Id: Ia1f0461605ba24414823ddb811ba67c725b354ce --- 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); } }